java.lang.Object
software.amazon.jsii.JsiiObject
All Implemented Interfaces:
IConstruct, IDependable, IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:35.214Z") @Stability(Stable) public class CfnImage extends CfnResource implements IInspectable
A CloudFormation AWS::SageMaker::Image.

Creates a custom SageMaker image. A SageMaker image is a set of image versions. Each image version represents a container image stored in Amazon Elastic Container Registry (ECR). 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.*;
 CfnImage cfnImage = CfnImage.Builder.create(this, "MyCfnImage")
         .imageName("imageName")
         .imageRoleArn("imageRoleArn")
         // the properties below are optional
         .imageDescription("imageDescription")
         .imageDisplayName("imageDisplayName")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnImage

      protected CfnImage(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnImage

      protected CfnImage(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnImage

      @Stability(Stable) public CfnImage(@NotNull Construct scope, @NotNull String id, @NotNull CfnImageProps props)
      Create a new AWS::SageMaker::Image.

      Parameters:
      scope -
      • scope in which this resource is defined.
      This parameter is required.
      id -
      • scoped id of the resource.
      This parameter is required.
      props -
      • resource properties.
      This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector -
      • tree inspector to collect and process attributes.
      This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrImageArn

      @Stability(Stable) @NotNull public String getAttrImageArn()
      The Amazon Resource Name (ARN) of the image.

      Type : String

      Length Constraints : Maximum length of 256.

      Pattern : ^arn:aws(-[\w]+)*:sagemaker:.+:[0-9]{12}:image/[a-z0-9]([-.]?[a-z0-9])*$

    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getTags

      @Stability(Stable) @NotNull public TagManager getTags()
      A list of key-value pairs to apply to this resource.

      Array Members : Minimum number of 0 items. Maximum number of 50 items.

    • getImageName

      @Stability(Stable) @NotNull public String getImageName()
      The name of the Image. Must be unique by region in your account.

      Length Constraints : Minimum length of 1. Maximum length of 63.

      Pattern : ^[a-zA-Z0-9]([-.]?[a-zA-Z0-9]){0,62}$

    • setImageName

      @Stability(Stable) public void setImageName(@NotNull String value)
      The name of the Image. Must be unique by region in your account.

      Length Constraints : Minimum length of 1. Maximum length of 63.

      Pattern : ^[a-zA-Z0-9]([-.]?[a-zA-Z0-9]){0,62}$

    • getImageRoleArn

      @Stability(Stable) @NotNull public String getImageRoleArn()
      The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on your behalf.

      Length Constraints : Minimum length of 20. Maximum length of 2048.

      Pattern : ^arn:aws[a-z\-]*:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+$

    • setImageRoleArn

      @Stability(Stable) public void setImageRoleArn(@NotNull String value)
      The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on your behalf.

      Length Constraints : Minimum length of 20. Maximum length of 2048.

      Pattern : ^arn:aws[a-z\-]*:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+$

    • getImageDescription

      @Stability(Stable) @Nullable public String getImageDescription()
      The description of the image.

      Length Constraints : Minimum length of 1. Maximum length of 512.

      Pattern : .*

    • setImageDescription

      @Stability(Stable) public void setImageDescription(@Nullable String value)
      The description of the image.

      Length Constraints : Minimum length of 1. Maximum length of 512.

      Pattern : .*

    • getImageDisplayName

      @Stability(Stable) @Nullable public String getImageDisplayName()
      The display name of the image.

      Length Constraints : Minimum length of 1. Maximum length of 128.

      Pattern : ^\S(.*\S)?$

    • setImageDisplayName

      @Stability(Stable) public void setImageDisplayName(@Nullable String value)
      The display name of the image.

      Length Constraints : Minimum length of 1. Maximum length of 128.

      Pattern : ^\S(.*\S)?$