Module Values.StartDomainExportResponseSource

Initiates the export of a SimpleDB domain to an S3 bucket.

Sourcetype nonrec t = {
  1. clientToken : IdempotencyToken.t option;
    (*

    The client token that was provided in the request.

    *)
  2. exportArn : ExportArn.t option;
    (*

    Unique ARN identifier of the export.

    *)
  3. requestedAt : RequestedAt.t option;
    (*

    Timestamp when the export request was received by the service.

    *)
}
Sourcetype nonrec error = [
  1. | `ConflictException of ConflictException.t
  2. | `InvalidParameterCombinationException of InvalidParameterCombinationException.t
  3. | `InvalidParameterValueException of InvalidParameterValueException.t
  4. | `NoSuchDomainException of NoSuchDomainException.t
  5. | `NumberExportsLimitExceeded of NumberExportsLimitExceeded.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?clientToken:??? -> ?exportArn:??? -> ?requestedAt:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ConflictException of ConflictException.t | `InvalidParameterCombinationException of InvalidParameterCombinationException.t | `InvalidParameterValueException of InvalidParameterValueException.t | `NoSuchDomainException of NoSuchDomainException.t | `NumberExportsLimitExceeded of NumberExportsLimitExceeded.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ConflictException of ConflictException.t | `InvalidParameterCombinationException of InvalidParameterCombinationException.t | `InvalidParameterValueException of InvalidParameterValueException.t | `NoSuchDomainException of NoSuchDomainException.t | `NumberExportsLimitExceeded of NumberExportsLimitExceeded.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of IdempotencyToken.t | `Timestamp of RequestedAt.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