Module Values.CopySourceImageSetPropertiesSource

Copy source image set properties.

Sourcetype nonrec t = {
  1. imageSetId : ImageSetId.t option;
    (*

    The image set identifier for the copied source image set.

    *)
  2. latestVersionId : ImageSetExternalVersionId.t option;
    (*

    The latest version identifier for the copied source image set.

    *)
  3. imageSetState : ImageSetState.t option;
    (*

    The image set state of the copied source image set.

    *)
  4. imageSetWorkflowStatus : ImageSetWorkflowStatus.t option;
    (*

    The workflow status of the copied source image set.

    *)
  5. createdAt : Date.t option;
    (*

    The timestamp when the source image set properties were created.

    *)
  6. updatedAt : Date.t option;
    (*

    The timestamp when the source image set properties were updated.

    *)
  7. imageSetArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) assigned to the source image set.

    *)
}
Sourceval make : ?imageSetId:??? -> ?latestVersionId:??? -> ?imageSetState:??? -> ?imageSetWorkflowStatus:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?imageSetArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ImageSetId.t | `Timestamp of Date.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