interface ContainerImageConfig
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Sagemaker.Alpha.ContainerImageConfig |
Go | github.com/aws/aws-cdk-go/awscdksagemakeralpha/v2#ContainerImageConfig |
Java | software.amazon.awscdk.services.sagemaker.alpha.ContainerImageConfig |
Python | aws_cdk.aws_sagemaker_alpha.ContainerImageConfig |
TypeScript (source) | @aws-cdk/aws-sagemaker-alpha » ContainerImageConfig |
Obtainable from
Container
.bind()
The configuration for creating a container image.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sagemaker_alpha from '@aws-cdk/aws-sagemaker-alpha';
const containerImageConfig: sagemaker_alpha.ContainerImageConfig = {
imageName: 'imageName',
};
Properties
Name | Type | Description |
---|---|---|
image | string | The image name. Images in Amazon ECR repositories can be specified by either using the full registry/repository:tag or registry/repository@digest. |
imageName
Type:
string
The image name. Images in Amazon ECR repositories can be specified by either using the full registry/repository:tag or registry/repository@digest.
For example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>:latest
or
012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>@sha256:94afd1f2e64d908bc90dbca0035a5b567EXAMPLE
.