Show / Hide Table of Contents

Interface CfnResourceDefinitionVersionPropsMixin.IS3MachineLearningModelResourceDataProperty

Settings for an Amazon S3 machine learning resource.

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

For more information, see Perform Machine Learning Inference in the Developer Guide .

In an CloudFormation template, S3MachineLearningModelResourceData can be used in the ResourceDataContainer property type.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-resourcedefinitionversion-s3machinelearningmodelresourcedata.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 s3MachineLearningModelResourceDataProperty = new S3MachineLearningModelResourceDataProperty {
                 DestinationPath = "destinationPath",
                 OwnerSetting = new ResourceDownloadOwnerSettingProperty {
                     GroupOwner = "groupOwner",
                     GroupPermission = "groupPermission"
                 },
                 S3Uri = "s3Uri"
             };

Synopsis

Properties

DestinationPath

The absolute local path of the resource inside the Lambda environment.

OwnerSetting

The owner setting for the downloaded machine learning resource.

S3Uri

The URI of the source model in an Amazon S3 bucket.

Properties

DestinationPath

The absolute local path of the resource inside the Lambda environment.

string? DestinationPath { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-resourcedefinitionversion-s3machinelearningmodelresourcedata.html#cfn-greengrass-resourcedefinitionversion-s3machinelearningmodelresourcedata-destinationpath

OwnerSetting

The owner setting for the downloaded machine learning resource.

object? OwnerSetting { get; }
Property Value

object

Remarks

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-resourcedefinitionversion-s3machinelearningmodelresourcedata.html#cfn-greengrass-resourcedefinitionversion-s3machinelearningmodelresourcedata-ownersetting

Type union: either IResolvable or CfnResourceDefinitionVersionPropsMixin.IResourceDownloadOwnerSettingProperty

S3Uri

The URI of the source model in an Amazon S3 bucket.

string? S3Uri { get; }
Property Value

string

Remarks

The model package must be in tar.gz or .zip format.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-resourcedefinitionversion-s3machinelearningmodelresourcedata.html#cfn-greengrass-resourcedefinitionversion-s3machinelearningmodelresourcedata-s3uri

Back to top Generated by DocFX