Module Values.DatasetExportJobSource

Describes a job that exports a dataset to an Amazon S3 bucket. For more information, see CreateDatasetExportJob. A dataset export job can be in one of the following states: CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

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

    The name of the export job.

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

    The Amazon Resource Name (ARN) of the dataset export job.

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

    The Amazon Resource Name (ARN) of the dataset to export.

    *)
  4. ingestionMode : IngestionMode.t option;
    (*

    The data to export, based on how you imported the data. You can choose to export BULK data that you imported using a dataset import job, PUT data that you imported incrementally (using the console, PutEvents, PutUsers and PutItems operations), or ALL for both types. The default value is PUT.

    *)
  5. roleArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM service role that has permissions to add data to your output Amazon S3 bucket.

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

    The status of the dataset export job. A dataset export job can be in one of the following states: CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

    *)
  7. jobOutput : DatasetExportJobOutput.t option;
    (*

    The path to the Amazon S3 bucket where the job's output is stored. For example: s3://bucket-name/folder-name/

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

    The creation date and time (in Unix time) of the dataset export job.

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

    The date and time (in Unix time) the status of the dataset export job was last updated.

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

    If a dataset export job fails, provides the reason why.

    *)
}
Sourceval make : ?jobName:??? -> ?datasetExportJobArn:??? -> ?datasetArn:??? -> ?ingestionMode:??? -> ?roleArn:??? -> ?status:??? -> ?jobOutput:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Name.t | `Structure of (string * [> `Structure of (string * [> `String of S3Location.t ]) list ]) 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