Module Values_1.EmailAddressSummarySource

Summary information about an email address associated with a queue. Contains the essential details needed to identify and manage the email address routing configuration.

Sourcetype nonrec t = {
  1. id : Values_0.EmailAddressId.t option;
    (*

    The unique identifier of the email address associated with the queue.

    *)
  2. arn : Values_0.EmailAddressArn.t option;
    (*

    The Amazon Resource Name (ARN) of the email address associated with the queue.

    *)
  3. isDefaultOutboundEmail : Values_0.Boolean.t option;
    (*

    Indicates whether this email address is configured as the default outbound email address for the queue. When set to true, this email address is used as the default sender for outbound email contacts from this queue.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?isDefaultOutboundEmail:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `String of Values_0.EmailAddressId.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