@Stability(value=Stable)
public static interface CfnResourceDefinitionVersion.ResourceDownloadOwnerSettingProperty
extends software.amazon.jsii.JsiiSerializable
For more information, see Access Machine Learning Resources from Lambda Functions in the Developer Guide .
In an AWS CloudFormation template, ResourceDownloadOwnerSetting is the property type of the OwnerSetting property for the S3MachineLearningModelResourceData and SageMakerMachineLearningModelResourceData property types.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.greengrass.*;
ResourceDownloadOwnerSettingProperty resourceDownloadOwnerSettingProperty = ResourceDownloadOwnerSettingProperty.builder()
.groupOwner("groupOwner")
.groupPermission("groupPermission")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnResourceDefinitionVersion.ResourceDownloadOwnerSettingProperty.Builder
|
static class |
CfnResourceDefinitionVersion.ResourceDownloadOwnerSettingProperty.Jsii$Proxy
An implementation for
CfnResourceDefinitionVersion.ResourceDownloadOwnerSettingProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnResourceDefinitionVersion.ResourceDownloadOwnerSettingProperty.Builder |
builder() |
String |
getGroupOwner()
The group owner of the machine learning resource.
|
String |
getGroupPermission()
The permissions that the group owner has to the machine learning resource.
|
@Stability(value=Stable) @NotNull String getGroupOwner()
This is the group ID (GID) of an existing Linux OS group on the system. The group's permissions are added to the Lambda process.
@Stability(value=Stable) @NotNull String getGroupPermission()
Valid values are rw (read-write) or ro (read-only).
@Stability(value=Stable) static CfnResourceDefinitionVersion.ResourceDownloadOwnerSettingProperty.Builder builder()
Copyright © 2022. All rights reserved.