Module Values.UpdateIdMappingTableInputSource

Provides the details that are necessary to update an ID mapping table.

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

    The unique identifier of the ID mapping table that you want to update.

    *)
  2. membershipIdentifier : MembershipIdentifier.t;
    (*

    The unique identifier of the membership that contains the ID mapping table that you want to update.

    *)
  3. description : ResourceDescription.t option;
    (*

    A new description for the ID mapping table.

    *)
  4. kmsKeyArn : KMSKeyArn.t option;
    (*

    The Amazon Resource Name (ARN) of the Amazon Web Services KMS key.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?kmsKeyArn:??? -> idMappingTableIdentifier:UUID.t -> membershipIdentifier:MembershipIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UUID.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