public static interface CfnResourceDefinitionVersion.SageMakerMachineLearningModelResourceDataProperty
For more information, see Perform Machine Learning Inference in the Developer Guide .
In an AWS CloudFormation template, SageMakerMachineLearningModelResourceData
can be used in the ResourceDataContainer
property type.
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.*; SageMakerMachineLearningModelResourceDataProperty sageMakerMachineLearningModelResourceDataProperty = SageMakerMachineLearningModelResourceDataProperty.builder() .destinationPath("destinationPath") .sageMakerJobArn("sageMakerJobArn") // the properties below are optional .ownerSetting(ResourceDownloadOwnerSettingProperty.builder() .groupOwner("groupOwner") .groupPermission("groupPermission") .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnResourceDefinitionVersion.SageMakerMachineLearningModelResourceDataProperty.Builder
|
static class |
CfnResourceDefinitionVersion.SageMakerMachineLearningModelResourceDataProperty.Jsii$Proxy
An implementation for
CfnResourceDefinitionVersion.SageMakerMachineLearningModelResourceDataProperty |
Modifier and Type | Method and Description |
---|---|
static CfnResourceDefinitionVersion.SageMakerMachineLearningModelResourceDataProperty.Builder |
builder() |
java.lang.String |
getDestinationPath()
The absolute local path of the resource inside the Lambda environment.
|
default java.lang.Object |
getOwnerSetting()
The owner setting for the downloaded machine learning resource.
|
java.lang.String |
getSageMakerJobArn()
The Amazon Resource Name (ARN) of the Amazon SageMaker training job that represents the source model.
|
java.lang.String getDestinationPath()
java.lang.String getSageMakerJobArn()
default java.lang.Object getOwnerSetting()
For more information, see Access Machine Learning Resources from Lambda Functions in the Developer Guide .