Values_2.TableStatusA structure containing information about the state of an asynchronous change to a table.
type nonrec t = {requestedBy : Values_0.NameString.t option;The ARN of the user who requested the asynchronous change.
*)updatedBy : Values_0.NameString.t option;The ARN of the user to last manually alter the asynchronous change (requesting cancellation, etc).
*)requestTime : Values_0.Timestamp.t option;An ISO 8601 formatted date string indicating the time that the change was initiated.
*)updateTime : Values_0.Timestamp.t option;An ISO 8601 formatted date string indicating the time that the state was last updated.
*)action : ResourceAction.t option;Indicates which action was called on the table, currently only CREATE or UPDATE.
*)state : ResourceState.t option;A generic status for the change in progress, such as QUEUED, IN_PROGRESS, SUCCESS, or FAILED.
*)error : Values_0.ErrorDetail.t option;An error that will only appear when the state is "FAILED". This is a parent level exception message, there may be different Errors for each dialect.
*)details : StatusDetails.t option;A StatusDetails object with information about the requested change.
*)}val make :
?requestedBy:Values_0.NameString.t ->
?updatedBy:Values_0.NameString.t ->
?requestTime:Values_0.Timestamp.t ->
?updateTime:Values_0.Timestamp.t ->
?action:ResourceAction.t ->
?state:ResourceState.t ->
?error:Values_0.ErrorDetail.t ->
?details:StatusDetails.t ->
unit ->
t