libZSservicesZSamazonka-sesZSamazonka-ses
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.SES.GetIdentityNotificationAttributes

Description

Given a list of verified identities (email addresses and/or domains), returns a structure describing identity notification attributes.

This operation is throttled at one request per second and can only get notification attributes for up to 100 identities at a time.

For more information about using notifications with Amazon SES, see the Amazon SES Developer Guide.

Synopsis

Creating a Request

data GetIdentityNotificationAttributes Source #

Represents a request to return the notification attributes for a list of identities you verified with Amazon SES. For information about Amazon SES notifications, see the Amazon SES Developer Guide.

See: newGetIdentityNotificationAttributes smart constructor.

Constructors

GetIdentityNotificationAttributes' 

Fields

  • identities :: [Text]

    A list of one or more identities. You can specify an identity by using its name or by using its Amazon Resource Name (ARN). Examples: user@example.com, example.com, arn:aws:ses:us-east-1:123456789012:identity/example.com.

Instances

Instances details
Eq GetIdentityNotificationAttributes Source # 
Instance details

Defined in Amazonka.SES.GetIdentityNotificationAttributes

Read GetIdentityNotificationAttributes Source # 
Instance details

Defined in Amazonka.SES.GetIdentityNotificationAttributes

Show GetIdentityNotificationAttributes Source # 
Instance details

Defined in Amazonka.SES.GetIdentityNotificationAttributes

Generic GetIdentityNotificationAttributes Source # 
Instance details

Defined in Amazonka.SES.GetIdentityNotificationAttributes

Associated Types

type Rep GetIdentityNotificationAttributes :: Type -> Type #

NFData GetIdentityNotificationAttributes Source # 
Instance details

Defined in Amazonka.SES.GetIdentityNotificationAttributes

Hashable GetIdentityNotificationAttributes Source # 
Instance details

Defined in Amazonka.SES.GetIdentityNotificationAttributes

AWSRequest GetIdentityNotificationAttributes Source # 
Instance details

Defined in Amazonka.SES.GetIdentityNotificationAttributes

ToHeaders GetIdentityNotificationAttributes Source # 
Instance details

Defined in Amazonka.SES.GetIdentityNotificationAttributes

ToPath GetIdentityNotificationAttributes Source # 
Instance details

Defined in Amazonka.SES.GetIdentityNotificationAttributes

ToQuery GetIdentityNotificationAttributes Source # 
Instance details

Defined in Amazonka.SES.GetIdentityNotificationAttributes

type Rep GetIdentityNotificationAttributes Source # 
Instance details

Defined in Amazonka.SES.GetIdentityNotificationAttributes

type Rep GetIdentityNotificationAttributes = D1 ('MetaData "GetIdentityNotificationAttributes" "Amazonka.SES.GetIdentityNotificationAttributes" "libZSservicesZSamazonka-sesZSamazonka-ses" 'False) (C1 ('MetaCons "GetIdentityNotificationAttributes'" 'PrefixI 'True) (S1 ('MetaSel ('Just "identities") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Text])))
type AWSResponse GetIdentityNotificationAttributes Source # 
Instance details

Defined in Amazonka.SES.GetIdentityNotificationAttributes

newGetIdentityNotificationAttributes :: GetIdentityNotificationAttributes Source #

Create a value of GetIdentityNotificationAttributes with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:identities:GetIdentityNotificationAttributes', getIdentityNotificationAttributes_identities - A list of one or more identities. You can specify an identity by using its name or by using its Amazon Resource Name (ARN). Examples: user@example.com, example.com, arn:aws:ses:us-east-1:123456789012:identity/example.com.

Request Lenses

getIdentityNotificationAttributes_identities :: Lens' GetIdentityNotificationAttributes [Text] Source #

A list of one or more identities. You can specify an identity by using its name or by using its Amazon Resource Name (ARN). Examples: user@example.com, example.com, arn:aws:ses:us-east-1:123456789012:identity/example.com.

Destructuring the Response

data GetIdentityNotificationAttributesResponse Source #

Represents the notification attributes for a list of identities.

See: newGetIdentityNotificationAttributesResponse smart constructor.

Constructors

GetIdentityNotificationAttributesResponse' 

Fields

Instances

Instances details
Eq GetIdentityNotificationAttributesResponse Source # 
Instance details

Defined in Amazonka.SES.GetIdentityNotificationAttributes

Read GetIdentityNotificationAttributesResponse Source # 
Instance details

Defined in Amazonka.SES.GetIdentityNotificationAttributes

Show GetIdentityNotificationAttributesResponse Source # 
Instance details

Defined in Amazonka.SES.GetIdentityNotificationAttributes

Generic GetIdentityNotificationAttributesResponse Source # 
Instance details

Defined in Amazonka.SES.GetIdentityNotificationAttributes

NFData GetIdentityNotificationAttributesResponse Source # 
Instance details

Defined in Amazonka.SES.GetIdentityNotificationAttributes

type Rep GetIdentityNotificationAttributesResponse Source # 
Instance details

Defined in Amazonka.SES.GetIdentityNotificationAttributes

type Rep GetIdentityNotificationAttributesResponse = D1 ('MetaData "GetIdentityNotificationAttributesResponse" "Amazonka.SES.GetIdentityNotificationAttributes" "libZSservicesZSamazonka-sesZSamazonka-ses" 'False) (C1 ('MetaCons "GetIdentityNotificationAttributesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "notificationAttributes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (HashMap Text IdentityNotificationAttributes))))

newGetIdentityNotificationAttributesResponse Source #

Create a value of GetIdentityNotificationAttributesResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:GetIdentityNotificationAttributesResponse', getIdentityNotificationAttributesResponse_httpStatus - The response's http status code.

$sel:notificationAttributes:GetIdentityNotificationAttributesResponse', getIdentityNotificationAttributesResponse_notificationAttributes - A map of Identity to IdentityNotificationAttributes.

Response Lenses