Module Values.UpdateImageSetMetadataResponseSource

Update image set metadata attributes.

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

    The data store identifier.

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

    The image set identifier.

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

    The latest 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 metadata was created.

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

    The timestamp when image set metadata was updated.

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

    The error message thrown if an update image set metadata action fails.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  6. | `ThrottlingException of ThrottlingException.t
  7. | `ValidationException of ValidationException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?datastoreId:??? -> ?imageSetId:??? -> ?latestVersionId:??? -> ?imageSetState:??? -> ?imageSetWorkflowStatus:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?message:??? -> 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 | `ServiceQuotaExceededException of ServiceQuotaExceededException.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 | `ServiceQuotaExceededException of ServiceQuotaExceededException.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 * [> `Enum of string | `String of DatastoreId.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