Interface CfnDomain.CustomImageProperty

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

@Stability(Stable) public static interface CfnDomain.CustomImageProperty extends software.amazon.jsii.JsiiSerializable
A custom SageMaker image.

For more information, see Bring your own SageMaker image .

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.*;
 CustomImageProperty customImageProperty = CustomImageProperty.builder()
         .appImageConfigName("appImageConfigName")
         .imageName("imageName")
         // the properties below are optional
         .imageVersionNumber(123)
         .build();