interface CfnImageMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnImageMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnImageMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnImageMixinProps |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnImageMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnImageMixinProps |
Properties for CfnImagePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-image.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const cfnImageMixinProps: sagemaker_mixins.CfnImageMixinProps = {
imageDescription: 'imageDescription',
imageDisplayName: 'imageDisplayName',
imageName: 'imageName',
imageRoleArn: 'imageRoleArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| image | string | The description of the image. |
| image | string | The display name of the image. |
| image | string | The name of the Image. Must be unique by region in your account. |
| image | string | The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on your behalf. |
| tags? | Cfn[] | A list of key-value pairs to apply to this resource. |
imageDescription?
Type:
string
(optional)
The description of the image.
imageDisplayName?
Type:
string
(optional)
The display name of the image.
Length Constraints : Minimum length of 1. Maximum length of 128.
Pattern : ^\S(.*\S)?$
imageName?
Type:
string
(optional)
The name of the Image. Must be unique by region in your account.
Length Constraints : Minimum length of 1. Maximum length of 63.
Pattern : ^[a-zA-Z0-9]([-.]?[a-zA-Z0-9]){0,62}$
imageRoleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on your behalf.
Length Constraints : Minimum length of 20. Maximum length of 2048.
Pattern : ^arn:aws[a-z\-]*:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+$
tags?
Type:
Cfn[]
(optional)
A list of key-value pairs to apply to this resource.
Array Members : Minimum number of 0 items. Maximum number of 50 items.

.NET
Go
Java
Python
TypeScript