Module Values.AccountReceiverSource

Contains the account details of the partner who received the Engagement Invitation, including the AWS account ID and company name.

Sourcetype nonrec t = {
  1. alias : Alias.t option;
    (*

    Represents the alias of the partner account receiving the Engagement Invitation, making it easier to identify and track the recipient in reports or logs.

    *)
  2. awsAccountId : AwsAccount.t;
    (*

    Indicates the AWS account ID of the partner who received the Engagement Invitation. This is a unique identifier for managing engagements with specific AWS accounts.

    *)
}
Sourceval context_ : string
Sourceval make : ?alias:??? -> awsAccountId:AwsAccount.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Alias.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