Show / Hide Table of Contents

Interface CfnResourceDefinitionPropsMixin.IResourceDownloadOwnerSettingProperty

The owner setting for a downloaded machine learning resource.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Greengrass
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnResourceDefinitionPropsMixin.IResourceDownloadOwnerSettingProperty
Syntax (vb)
Public Interface CfnResourceDefinitionPropsMixin.IResourceDownloadOwnerSettingProperty
Remarks

For more information, see Access Machine Learning Resources from Lambda Functions in the Developer Guide .

In an CloudFormation template, ResourceDownloadOwnerSetting is the property type of the OwnerSetting property for the S3MachineLearningModelResourceData and SageMakerMachineLearningModelResourceData property types.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-resourcedefinition-resourcedownloadownersetting.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.Greengrass;

             var resourceDownloadOwnerSettingProperty = new ResourceDownloadOwnerSettingProperty {
                 GroupOwner = "groupOwner",
                 GroupPermission = "groupPermission"
             };

Synopsis

Properties

GroupOwner

The group owner of the machine learning resource.

GroupPermission

The permissions that the group owner has to the machine learning resource.

Properties

GroupOwner

The group owner of the machine learning resource.

string? GroupOwner { get; }
Property Value

string

Remarks

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-resourcedefinition-resourcedownloadownersetting.html#cfn-greengrass-resourcedefinition-resourcedownloadownersetting-groupowner

GroupPermission

The permissions that the group owner has to the machine learning resource.

string? GroupPermission { get; }
Property Value

string

Remarks

Valid values are rw (read-write) or ro (read-only).

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-resourcedefinition-resourcedownloadownersetting.html#cfn-greengrass-resourcedefinition-resourcedownloadownersetting-grouppermission

Back to top Generated by DocFX