Module Values.GetImageSetResponseSource

Get image set properties.

Sourcetype nonrec t = {
  1. datastoreId : DatastoreId.t option;
    (*

    The data store identifier.

    *)
  2. imageSetId : ImageSetId.t option;
    (*

    The image set identifier.

    *)
  3. versionId : ImageSetExternalVersionId.t option;
    (*

    The image set version identifier.

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

    The image set state.

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

    The image set workflow status.

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

    The timestamp when image set properties were created.

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

    The timestamp when image set properties were updated.

    *)
  8. deletedAt : Date.t option;
    (*

    The timestamp when the image set properties were deleted.

    *)
  9. message : Message.t option;
    (*

    The error message thrown if an image set action fails.

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

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

    *)
  11. overrides : Overrides.t option;
    (*

    This object contains the details of any overrides used while creating a specific image set version. If an image set was copied or updated using the force flag, this object will contain the forced flag.

    *)
  12. isPrimary : Boolean.t option;
    (*

    The flag to determine whether the image set is primary or not.

    *)
  13. lastAccessedAt : Date.t option;
    (*

    When the image set was last accessed.

    *)
  14. storageTier : StorageTier.t option;
    (*

    The storage tier of the image set.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?datastoreId:??? -> ?imageSetId:??? -> ?versionId:??? -> ?imageSetState:??? -> ?imageSetWorkflowStatus:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?deletedAt:??? -> ?message:??? -> ?imageSetArn:??? -> ?overrides:??? -> ?isPrimary:??? -> ?lastAccessedAt:??? -> ?storageTier:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of DatastoreId.t | `Structure of (string * [> `Boolean of Boolean.t ]) list | `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