Interface CfnSpace.CustomImageProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSpace.CustomImageProperty.Jsii$Proxy
- Enclosing class:
- CfnSpace
@Stability(Stable)
public static interface CfnSpace.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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSpace.CustomImagePropertystatic final classAn implementation forCfnSpace.CustomImageProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAppImageConfigName
The name of the AppImageConfig. -
getImageName
The name of the CustomImage.Must be unique to your account.
-
getImageVersionNumber
The version number of the CustomImage. -
builder
-