Module Values.IdentityInfoSource

Information about an email identity.

Sourcetype nonrec t = {
  1. identityType : IdentityType.t option;
    (*

    The email identity type. The identity type can be one of the following: EMAIL_ADDRESS – The identity is an email address. DOMAIN – The identity is a domain. MANAGED_DOMAIN – The identity is a domain that is managed by AWS.

    *)
  2. identityName : Identity.t option;
    (*

    The address or domain of the identity.

    *)
  3. sendingEnabled : Enabled.t option;
    (*

    Indicates whether or not you can send email from the identity. In Amazon Pinpoint, an identity is an email address or domain that you send email from. Before you can send email from an identity, you have to demostrate that you own the identity, and that you authorize Amazon Pinpoint to send email from that identity.

    *)
}
Sourceval make : ?identityType:??? -> ?identityName:??? -> ?sendingEnabled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Enabled.t | `Enum of string | `String of Identity.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