Interface CfnResourceDefinitionVersion.SageMakerMachineLearningModelResourceDataProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResourceDefinitionVersion.SageMakerMachineLearningModelResourceDataProperty.Jsii$Proxy
- Enclosing class:
CfnResourceDefinitionVersion
@Stability(Stable)
public static interface CfnResourceDefinitionVersion.SageMakerMachineLearningModelResourceDataProperty
extends software.amazon.jsii.JsiiSerializable
Settings for an Secrets Manager machine learning resource.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnResourceDefinitionVersion.SageMakerMachineLearningModelResourceDataProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The absolute local path of the resource inside the Lambda environment.default Object
The owner setting for the downloaded machine learning resource.The Amazon Resource Name (ARN) of the Amazon SageMaker AI training job that represents the source model.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationPath
The absolute local path of the resource inside the Lambda environment.- See Also:
-
getSageMakerJobArn
The Amazon Resource Name (ARN) of the Amazon SageMaker AI training job that represents the source model.- See Also:
-
getOwnerSetting
The owner setting for the downloaded machine learning resource.For more information, see Access Machine Learning Resources from Lambda Functions in the Developer Guide .
- See Also:
-
builder
@Stability(Stable) static CfnResourceDefinitionVersion.SageMakerMachineLearningModelResourceDataProperty.Builder builder()
-