Module Values_1.EmailAddressMetadataSource

Contains information about an email address for a contact center.

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

    The identifier of the email address.

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

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

    *)
  3. emailAddress : Values_0.EmailAddress.t option;
    (*

    The email address, including the domain.

    *)
  4. description : Values_0.Description.t option;
    (*

    The description of the email address.

    *)
  5. displayName : Values_0.EmailAddressDisplayName.t option;
    (*

    The display name of email address.

    *)
  6. aliasConfigurations : Values_0.AliasConfigurationList.t option;
    (*

    A list of alias configurations for this email address, showing which email addresses forward to this primary address. Each configuration contains the email address ID of an alias that forwards emails to this address.

    *)
}
Sourceval make : ?emailAddressId:??? -> ?emailAddressArn:??? -> ?emailAddress:??? -> ?description:??? -> ?displayName:??? -> ?aliasConfigurations:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] list | `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