Show / Hide Table of Contents

Interface IContainerImageConfig

(experimental) The configuration for creating a container image.

Namespace: Amazon.CDK.AWS.Sagemaker.Alpha
Assembly: Amazon.CDK.AWS.Sagemaker.Alpha.dll
Syntax (csharp)
public interface IContainerImageConfig
Syntax (vb)
Public Interface IContainerImageConfig
Remarks

Stability: Experimental

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.AWS.Sagemaker.Alpha;

             var containerImageConfig = new ContainerImageConfig {
                 ImageName = "imageName"
             };

Synopsis

Properties

ImageName

(experimental) The image name. Images in Amazon ECR repositories can be specified by either using the full registry/repository:tag or registry/repository@digest.

Properties

ImageName

(experimental) The image name. Images in Amazon ECR repositories can be specified by either using the full registry/repository:tag or registry/repository@digest.

string ImageName { get; }
Property Value

string

Remarks

For example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>:latest or 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>@sha256:94afd1f2e64d908bc90dbca0035a5b567EXAMPLE.

Stability: Experimental

Back to top Generated by DocFX