Module Values.DestinationResultSource

The destination information for the S3 Metadata configuration.

Sourcetype nonrec t = {
  1. tableBucketType : S3TablesBucketType.t option;
    (*

    The type of the table bucket where the metadata configuration is stored. The aws value indicates an Amazon Web Services managed table bucket, and the customer value indicates a customer-managed table bucket. V2 metadata configurations are stored in Amazon Web Services managed table buckets, and V1 metadata configurations are stored in customer-managed table buckets.

    *)
  2. tableBucketArn : S3TablesBucketArn.t option;
    (*

    The Amazon Resource Name (ARN) of the table bucket where the metadata configuration is stored.

    *)
  3. tableNamespace : S3TablesNamespace.t option;
    (*

    The namespace in the table bucket where the metadata tables for a metadata configuration are stored.

    *)
}
Sourceval make : ?tableBucketType:??? -> ?tableBucketArn:??? -> ?tableNamespace:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of S3TablesBucketArn.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