Module Values.S3BucketTranscriptSourceSource

The object representing the Amazon S3 bucket containing the transcript, as well as the associated metadata.

Sourcetype nonrec t = {
  1. s3BucketName : S3BucketName.t;
    (*

    The name of the bucket containing the transcript and the associated metadata.

    *)
  2. pathFormat : PathFormat.t option;
    (*

    The object that contains a path format that will be applied when Amazon Lex reads the transcript file in the bucket you provide. Specify this object if you only want Lex to read a subset of files in your Amazon S3 bucket.

    *)
  3. transcriptFormat : TranscriptFormat.t;
    (*

    The format of the transcript content. Currently, Genie only supports the Amazon Lex transcript format.

    *)
  4. transcriptFilter : TranscriptFilter.t option;
    (*

    The object that contains the filter which will be applied when Amazon Lex reads through the Amazon S3 bucket. Specify this object if you want Amazon Lex to read only a subset of the Amazon S3 bucket based on the filter you provide.

    *)
  5. kmsKeyArn : KmsKeyArn.t option;
    (*

    The ARN of the KMS key that customer use to encrypt their Amazon S3 bucket. Only use this field if your bucket is encrypted using a customer managed KMS key.

    *)
}
Sourceval context_ : string
Sourceval make : ?pathFormat:??? -> ?transcriptFilter:??? -> ?kmsKeyArn:??? -> s3BucketName:S3BucketName.t -> transcriptFormat:TranscriptFormat.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of S3BucketName.t | `Structure of (string * [> `List of [> `String of ObjectPrefix.t ] list | `Structure of (string * [> `Structure of (string * [> `Timestamp of Timestamp.t ]) list ]) list ]) list ]) 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