Module Values.ReferenceDataSourceDescriptionSource

Describes the reference data source configured for an application.

Sourcetype nonrec t = {
  1. referenceId : Id.t option;
    (*

    ID of the reference data source. This is the ID that Amazon Kinesis Analytics assigns when you add the reference data source to your application using the AddApplicationReferenceDataSource operation.

    *)
  2. tableName : InAppTableName.t option;
    (*

    The in-application table name created by the specific reference data source configuration.

    *)
  3. s3ReferenceDataSourceDescription : S3ReferenceDataSourceDescription.t option;
    (*

    Provides the S3 bucket name, the object key name that contains the reference data. It also provides the Amazon Resource Name (ARN) of the IAM role that Amazon Kinesis Analytics can assume to read the Amazon S3 object and populate the in-application reference table.

    *)
  4. referenceSchema : SourceSchema.t option;
    (*

    Describes the format of the data in the streaming source, and how each data element maps to corresponding columns created in the in-application stream.

    *)
}
Sourceval make : ?referenceId:??? -> ?tableName:??? -> ?s3ReferenceDataSourceDescription:??? -> ?referenceSchema:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Id.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of RecordColumnName.t ]) list ] list | `String of BucketARN.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Structure of (string * [> `String of RecordRowPath.t ]) list ]) 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