Module Values.DataDeletionJobSource

Describes a job that deletes all references to specific users from an Amazon Personalize dataset group in batches. For information about creating a data deletion job, see Deleting users.

Sourcetype nonrec t = {
  1. jobName : Name.t option;
    (*

    The name of the data deletion job.

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

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

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

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

    *)
  4. dataSource : DataSource.t option;
  5. roleArn : RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role that has permissions to read from the Amazon S3 data source.

    *)
  6. 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

    *)
  7. numDeleted : Integer.t option;
    (*

    The number of records deleted by a COMPLETED job.

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

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

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

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

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

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

    *)
}
Sourceval make : ?jobName:??? -> ?dataDeletionJobArn:??? -> ?datasetGroupArn:??? -> ?dataSource:??? -> ?roleArn:??? -> ?status:??? -> ?numDeleted:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of Name.t | `Structure of (string * [> `String of S3Location.t ]) list | `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