Module Values.ConfiguredTableAssociationSummarySource

The configured table association summary for the objects listed by the request.

Sourcetype nonrec t = {
  1. configuredTableId : UUID.t option;
    (*

    The unique configured table ID that this configured table association refers to.

    *)
  2. membershipId : MembershipIdentifier.t option;
    (*

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

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

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

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

    The name of the configured table association. The table is identified by this name when running Protected Queries against the underlying data.

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

    The time the configured table association was created.

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

    The time the configured table association was last updated.

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

    The unique ID for the configured table association.

    *)
  8. arn : ConfiguredTableAssociationArn.t option;
    (*

    The unique ARN for the configured table association.

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

    The analysis rule types that are associated with the configured table associations in this summary.

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