Module Values.GetBulkPublishDetailsResponseSource

The output for the GetBulkPublishDetails operation.

Sourcetype nonrec t = {
  1. identityPoolId : IdentityPoolId.t option;
    (*

    A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.

    *)
  2. bulkPublishStartTime : Date.t option;
    (*

    The date/time at which the last bulk publish was initiated.

    *)
  3. bulkPublishCompleteTime : Date.t option;
    (*

    If BulkPublishStatus is SUCCEEDED, the time the last bulk publish operation completed.

    *)
  4. bulkPublishStatus : BulkPublishStatus.t option;
    (*

    Status of the last bulk publish operation, valid values are: NOT_STARTED - No bulk publish has been requested for this identity pool IN_PROGRESS - Data is being published to the configured stream SUCCEEDED - All data for the identity pool has been published to the configured stream FAILED - Some portion of the data has failed to publish, check FailureMessage for the cause.

    *)
  5. failureMessage : String_.t option;
    (*

    If BulkPublishStatus is FAILED this field will contain the error message that caused the bulk publish to fail.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalErrorException of InternalErrorException.t
  2. | `InvalidParameterException of InvalidParameterException.t
  3. | `NotAuthorizedException of NotAuthorizedException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?identityPoolId:??? -> ?bulkPublishStartTime:??? -> ?bulkPublishCompleteTime:??? -> ?bulkPublishStatus:??? -> ?failureMessage:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalErrorException of InternalErrorException.t | `InvalidParameterException of InvalidParameterException.t | `NotAuthorizedException of NotAuthorizedException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalErrorException of InternalErrorException.t | `InvalidParameterException of InvalidParameterException.t | `NotAuthorizedException of NotAuthorizedException.t | `ResourceNotFoundException of ResourceNotFoundException.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 | `String of IdentityPoolId.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