Interface CfnModel.ImageConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnModel.ImageConfigProperty.Jsii$Proxy
Enclosing class:
CfnModel

@Stability(Stable) public static interface CfnModel.ImageConfigProperty extends software.amazon.jsii.JsiiSerializable
Specifies whether the model container is in Amazon ECR or a private Docker registry accessible from your Amazon Virtual Private Cloud (VPC).

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.sagemaker.*;
 ImageConfigProperty imageConfigProperty = ImageConfigProperty.builder()
         .repositoryAccessMode("repositoryAccessMode")
         // the properties below are optional
         .repositoryAuthConfig(RepositoryAuthConfigProperty.builder()
                 .repositoryCredentialsProviderArn("repositoryCredentialsProviderArn")
                 .build())
         .build();
 

See Also: