Module Values.CreateConfiguredTableAssociationInputSource

Creates a configured table association. A configured table association links a configured table with a collaboration.

Sourcetype nonrec t = {
  1. name : TableAlias.t;
    (*

    The name of the configured table association. This name is used to query the underlying configured table.

    *)
  2. description : TableDescription.t option;
    (*

    A description for the configured table association.

    *)
  3. 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.

    *)
  4. configuredTableIdentifier : ConfiguredTableIdentifier.t;
    (*

    A unique identifier for the configured table to be associated to. Currently accepts a configured table ID.

    *)
  5. roleArn : RoleArn.t;
    (*

    The service will assume this role to access catalog metadata and query the table.

    *)
  6. tags : TagMap.t option;
    (*

    An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> name:TableAlias.t -> membershipIdentifier:MembershipIdentifier.t -> configuredTableIdentifier:ConfiguredTableIdentifier.t -> roleArn:RoleArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of TableAlias.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