Interface CfnImageVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnImageVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:35.231Z")
@Stability(Stable)
public interface CfnImageVersionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnImageVersion.
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.*;
CfnImageVersionProps cfnImageVersionProps = CfnImageVersionProps.builder()
.baseImage("baseImage")
.imageName("imageName")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnImageVersionPropsstatic final classAn implementation forCfnImageVersionProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnImageVersionProps.Builderbuilder()The container image that the SageMaker image version is based on.The name of the parent image.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBaseImage
The container image that the SageMaker image version is based on.Length Constraints : Minimum length of 1. Maximum length of 255.
Pattern :
.* -
getImageName
The name of the parent image.Length Constraints : Minimum length of 1. Maximum length of 63.
Pattern :
^[a-zA-Z0-9]([-.]?[a-zA-Z0-9]){0,62}$ -
builder
- Returns:
- a
CfnImageVersionProps.BuilderofCfnImageVersionProps
-