Module Values.EventsDetectionJobPropertiesSource

Provides information about an events detection job.

Sourcetype nonrec t = {
  1. jobId : JobId.t option;
    (*

    The identifier assigned to the events detection job.

    *)
  2. jobArn : ComprehendArn.t option;
    (*

    The Amazon Resource Name (ARN) of the events detection job. It is a unique, fully qualified identifier for the job. It includes the Amazon Web Services account, Amazon Web Services Region, and the job ID. The format of the ARN is as follows: arn:<partition>:comprehend:<region>:<account-id>:events-detection-job/<job-id> The following is an example job ARN: arn:aws:comprehend:us-west-2:111122223333:events-detection-job/1234abcd12ab34cd56ef1234567890ab

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

    The name you assigned the events detection job.

    *)
  4. jobStatus : JobStatus.t option;
    (*

    The current status of the events detection job.

    *)
  5. message : AnyLengthString.t option;
    (*

    A description of the status of the events detection job.

    *)
  6. submitTime : Timestamp.t option;
    (*

    The time that the events detection job was submitted for processing.

    *)
  7. endTime : Timestamp.t option;
    (*

    The time that the events detection job completed.

    *)
  8. inputDataConfig : InputDataConfig.t option;
    (*

    The input data configuration that you supplied when you created the events detection job.

    *)
  9. outputDataConfig : OutputDataConfig.t option;
    (*

    The output data configuration that you supplied when you created the events detection job.

    *)
  10. languageCode : LanguageCode.t option;
    (*

    The language code of the input documents.

    *)
  11. dataAccessRoleArn : IamRoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role that grants Amazon Comprehend read access to your input data.

    *)
  12. targetEventTypes : TargetEventTypes.t option;
    (*

    The types of events that are detected by the job.

    *)
}
Sourceval make : ?jobId:??? -> ?jobArn:??? -> ?jobName:??? -> ?jobStatus:??? -> ?message:??? -> ?submitTime:??? -> ?endTime:??? -> ?inputDataConfig:??? -> ?outputDataConfig:??? -> ?languageCode:??? -> ?dataAccessRoleArn:??? -> ?targetEventTypes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of EventTypeString.t ] list | `String of JobId.t | `Structure of (string * [> `Enum of string | `String of S3Uri.t | `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list ]) list ]) list | `Timestamp of Timestamp.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