Module Values.GetBulkDeploymentStatusResponseSource

Returns the status of a bulk deployment.

Sourcetype nonrec t = {
  1. bulkDeploymentMetrics : BulkDeploymentMetrics.t option;
    (*

    Relevant metrics on input records processed during bulk deployment.

    *)
  2. bulkDeploymentStatus : BulkDeploymentStatus.t option;
    (*

    The status of the bulk deployment.

    *)
  3. createdAt : string option;
    (*

    The time, in ISO format, when the deployment was created.

    *)
  4. errorDetails : ErrorDetails.t option;
    (*

    Error details

    *)
  5. errorMessage : string option;
    (*

    Error message

    *)
  6. tags : Tags.t option;
    (*

    Tag(s) attached to the resource arn.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?bulkDeploymentMetrics:??? -> ?bulkDeploymentStatus:??? -> ?createdAt:??? -> ?errorDetails:??? -> ?errorMessage:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of string ]) list ] list | `Map of ([> `String of string ] * [> `String of string ]) list | `String of string | `Structure of (string * [> `Integer of int ]) list ]) 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