Module Values.DataDeletionJobSummarySource

Provides a summary of the properties of a data deletion job. For a complete listing, call the DescribeDataDeletionJob API operation.

Sourcetype nonrec t = {
  1. dataDeletionJobArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the data deletion job.

    *)
  2. datasetGroupArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the dataset group the job deleted records from.

    *)
  3. jobName : Name.t option;
    (*

    The name of the data deletion job.

    *)
  4. status : Status.t option;
    (*

    The status of the data deletion job. A data deletion job can have one of the following statuses: PENDING > IN_PROGRESS > COMPLETED -or- FAILED

    *)
  5. creationDateTime : Date.t option;
    (*

    The creation date and time (in Unix time) of the data deletion job.

    *)
  6. lastUpdatedDateTime : Date.t option;
    (*

    The date and time (in Unix time) the data deletion job was last updated.

    *)
  7. failureReason : FailureReason.t option;
    (*

    If a data deletion job fails, provides the reason why.

    *)
}
Sourceval make : ?dataDeletionJobArn:??? -> ?datasetGroupArn:??? -> ?jobName:??? -> ?status:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Arn.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