Module Values.GetEmailIdentityResponseSource

Details about an email identity.

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

    The email identity type. Note: the MANAGED_DOMAIN identity type is not supported.

    *)
  2. feedbackForwardingStatus : Enabled.t option;
    (*

    The feedback forwarding configuration for the identity. If the value is true, you receive email notifications when bounce or complaint events occur. These notifications are sent to the address that you specified in the Return-Path header of the original email. You're required to have a method of tracking bounces and complaints. If you haven't set up another mechanism for receiving bounce or complaint notifications (for example, by setting up an event destination), you receive an email notification when these events occur (even if this setting is disabled).

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

    Specifies whether or not the identity is verified. You can only send email from verified email addresses or domains. For more information about verifying identities, see the Amazon Pinpoint User Guide.

    *)
  4. dkimAttributes : DkimAttributes.t option;
    (*

    An object that contains information about the DKIM attributes for the identity.

    *)
  5. mailFromAttributes : MailFromAttributes.t option;
    (*

    An object that contains information about the Mail-From attributes for the email identity.

    *)
  6. policies : PolicyMap.t option;
    (*

    A map of policy names to policies.

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

    An array of objects that define the tags (keys and values) that are associated with the email identity.

    *)
  8. configurationSetName : ConfigurationSetName.t option;
    (*

    The configuration set used by default when sending from this identity.

    *)
  9. verificationStatus : VerificationStatus.t option;
    (*

    The verification status of the identity. The status can be one of the following: PENDING – The verification process was initiated, but Amazon SES hasn't yet been able to verify the identity. SUCCESS – The verification process completed successfully. FAILED – The verification process failed. TEMPORARY_FAILURE – A temporary issue is preventing Amazon SES from determining the verification status of the identity. NOT_STARTED – The verification process hasn't been initiated for the identity.

    *)
  10. verificationInfo : VerificationInfo.t option;
    (*

    An object that contains additional information about the verification status for the identity.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `NotFoundException of NotFoundException.t
  3. | `TooManyRequestsException of TooManyRequestsException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?identityType:??? -> ?feedbackForwardingStatus:??? -> ?verifiedForSendingStatus:??? -> ?dkimAttributes:??? -> ?mailFromAttributes:??? -> ?policies:??? -> ?tags:??? -> ?configurationSetName:??? -> ?verificationStatus:??? -> ?verificationInfo:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of unit | `NotFoundException of unit | `TooManyRequestsException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of unit | `NotFoundException of unit | `TooManyRequestsException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Enabled.t | `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `Map of ([> `String of PolicyName.t ] * [> `String of Policy.t ]) list | `String of ConfigurationSetName.t | `Structure of (string * [> `Boolean of Enabled.t | `Enum of string | `List of [> `String of DnsToken.t ] list | `String of HostedZone.t | `Structure of (string * [> `Long of SerialNumber.t | `String of PrimaryNameServer.t ]) list | `Timestamp of Timestamp.t ]) 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