Values.GetChangesetResponseSourceThe response from a describe changeset operation
type nonrec t = {changesetId : ChangesetId.t option;The unique identifier for a Changeset.
*)changesetArn : ChangesetArn.t option;The ARN identifier of the Changeset.
*)datasetId : DatasetId.t option;The unique identifier for the FinSpace Dataset where the Changeset is created.
*)changeType : ChangeType.t option;Type that indicates how a Changeset is applied to a Dataset. REPLACE – Changeset is considered as a replacement to all prior loaded Changesets. APPEND – Changeset is considered as an addition to the end of all prior loaded Changesets. MODIFY – Changeset is considered as a replacement to a specific prior ingested Changeset.
*)sourceParams : SourceParams.t option;Options that define the location of the data being ingested.
*)formatParams : FormatParams.t option;Structure of the source file(s).
*)createTime : TimestampEpoch.t option;The timestamp at which the Changeset was created in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
*)status : IngestionStatus.t option;The status of Changeset creation operation.
*)errorInfo : ChangesetErrorInfo.t option;The structure with error messages.
*)activeUntilTimestamp : TimestampEpoch.t option;Time until which the Changeset is active. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
*)activeFromTimestamp : TimestampEpoch.t option;Beginning time from which the Changeset is active. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
*)updatesChangesetId : ChangesetId.t option;The unique identifier of the Changeset that is being updated.
*)updatedByChangesetId : ChangesetId.t option;The unique identifier of the updated Changeset.
*)}type nonrec error = [ | `AccessDeniedException of AccessDeniedException.t| `ConflictException of ConflictException.t| `InternalServerException of InternalServerException.t| `ResourceNotFoundException of ResourceNotFoundException.t| `ThrottlingException of ThrottlingException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val make :
?changesetId:??? ->
?changesetArn:??? ->
?datasetId:??? ->
?changeType:??? ->
?sourceParams:??? ->
?formatParams:??? ->
?createTime:??? ->
?status:??? ->
?errorInfo:??? ->
?activeUntilTimestamp:??? ->
?activeFromTimestamp:??? ->
?updatesChangesetId:??? ->
?updatedByChangesetId:??? ->
unit ->
tval 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 unit
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val 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 unit
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Long of TimestampEpoch.t
| `Map of
([> `String of StringMapKey.t ] * [> `String of StringMapValue.t ])
list
| `String of ChangesetId.t
| `Structure of
(string * [> `Enum of string | `String of ErrorMessage.t ]) list ])
list ]