Module Values_1.CreateImageRequestSource

Creates a custom SageMaker AI image. A SageMaker AI image is a set of image versions. Each image version represents a container image stored in Amazon ECR. For more information, see Bring your own SageMaker AI image.

Sourcetype nonrec t = {
  1. description : ImageDescription.t option;
    (*

    The description of the image.

    *)
  2. displayName : ImageDisplayName.t option;
    (*

    The display name of the image. If not provided, ImageName is displayed.

    *)
  3. imageName : Values_0.ImageName.t;
    (*

    The name of the image. Must be unique to your account.

    *)
  4. roleArn : Values_0.RoleArn.t;
    (*

    The ARN of an IAM role that enables Amazon SageMaker AI to perform tasks on your behalf.

    *)
  5. tags : Values_0.TagList.t option;
    (*

    A list of tags to apply to the image.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?displayName:??? -> ?tags:??? -> imageName:Values_0.ImageName.t -> roleArn:Values_0.RoleArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of ImageDescription.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t