Module Values.CreateChannelHandshakeRequestSource

Creates a new channel handshake request to establish a partnership with another AWS account.

Sourcetype nonrec t = {
  1. handshakeType : HandshakeType.t;
    (*

    The type of handshake to create (e.g., start service period, revoke service period).

    *)
  2. catalog : Catalog.t;
    (*

    The catalog identifier for the handshake request.

    *)
  3. associatedResourceIdentifier : AssociatedResourceIdentifier.t;
    (*

    The identifier of the resource associated with this handshake.

    *)
  4. payload : ChannelHandshakePayload.t option;
    (*

    The payload containing specific details for the handshake type.

    *)
  5. clientToken : ClientToken.t option;
    (*

    A unique, case-sensitive identifier to ensure idempotency of the request.

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

    Key-value pairs to associate with the channel handshake.

    *)
}
Sourceval context_ : string
Sourceval make : ?payload:??? -> ?clientToken:??? -> ?tags:??? -> handshakeType:HandshakeType.t -> catalog:Catalog.t -> associatedResourceIdentifier:AssociatedResourceIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of Catalog.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of ProgramManagementAccountIdentifier.t | `Timestamp of DateTime.t ]) list ]) list ]) 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