Interface CfnUserProfilePropsMixin.CustomImageProperty

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

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

For more information, see Bring your own SageMaker AI 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.mixins.preview.services.sagemaker.mixins.*;
 CustomImageProperty customImageProperty = CustomImageProperty.builder()
         .appImageConfigName("appImageConfigName")
         .imageName("imageName")
         .imageVersionNumber(123)
         .build();
 

See Also: