Module Values.ConfiguredTableAssociationSource

A configured table association links a configured table to a collaboration.

Sourcetype nonrec t = {
  1. arn : ConfiguredTableAssociationArn.t option;
    (*

    The unique ARN for the configured table association.

    *)
  2. id : UUID.t option;
    (*

    The unique ID for the configured table association.

    *)
  3. configuredTableId : UUID.t option;
    (*

    The unique ID for the configured table that the association refers to.

    *)
  4. configuredTableArn : ConfiguredTableArn.t option;
    (*

    The unique ARN for the configured table that the association refers to.

    *)
  5. membershipId : UUID.t option;
    (*

    The unique ID for the membership this configured table association belongs to.

    *)
  6. membershipArn : MembershipArn.t option;
    (*

    The unique ARN for the membership this configured table association belongs to.

    *)
  7. roleArn : RoleArn.t option;
    (*

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

    *)
  8. name : TableAlias.t option;
    (*

    The name of the configured table association, in lowercase. The table is identified by this name when running protected queries against the underlying data.

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

    A description of the configured table association.

    *)
  10. analysisRuleTypes : ConfiguredTableAssociationAnalysisRuleTypeList.t option;
    (*

    The analysis rule types for the configured table association.

    *)
  11. createTime : Timestamp.t option;
    (*

    The time the configured table association was created.

    *)
  12. updateTime : Timestamp.t option;
    (*

    The time the configured table association was last updated.

    *)
}
Sourceval make : ?arn:??? -> ?id:??? -> ?configuredTableId:??? -> ?configuredTableArn:??? -> ?membershipId:??? -> ?membershipArn:??? -> ?roleArn:??? -> ?name:??? -> ?description:??? -> ?analysisRuleTypes:??? -> ?createTime:??? -> ?updateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of ConfiguredTableAssociationArn.t | `Timestamp of Timestamp.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