Values.CreateConfiguredTableAssociationInputSourceCreates a configured table association. A configured table association links a configured table with a collaboration.
type nonrec t = {name : TableAlias.t;The name of the configured table association. This name is used to query the underlying configured table.
*)description : TableDescription.t option;A description for the configured table association.
*)membershipIdentifier : MembershipIdentifier.t;A unique identifier for one of your memberships for a collaboration. The configured table is associated to the collaboration that this membership belongs to. Currently accepts a membership ID.
*)configuredTableIdentifier : ConfiguredTableIdentifier.t;A unique identifier for the configured table to be associated to. Currently accepts a configured table ID.
*)roleArn : RoleArn.t;The service will assume this role to access catalog metadata and query the table.
*)}val make :
?description:??? ->
?tags:??? ->
name:TableAlias.t ->
membershipIdentifier:MembershipIdentifier.t ->
configuredTableIdentifier:ConfiguredTableIdentifier.t ->
roleArn:RoleArn.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of TableAlias.t ])
list ]