Module Values.AssociateSourceToS3TableIntegrationRequestSource

Associates a data source with an S3 Table Integration for query access in the 'logs' namespace. This enables querying log data using analytics engines that support Iceberg such as Amazon Athena, Amazon Redshift, and Apache Spark.

Sourcetype nonrec t = {
  1. integrationArn : Arn.t;
    (*

    The Amazon Resource Name (ARN) of the S3 Table Integration to associate the data source with.

    *)
  2. dataSource : DataSource.t;
    (*

    The data source to associate with the S3 Table Integration. Contains the name and type of the data source.

    *)
}
Sourceval context_ : string
Sourceval make : integrationArn:Arn.t -> dataSource:DataSource.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Arn.t | `Structure of (string * [> `String of DataSourceName.t ]) 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