Class: Aws::SESV2::Types::ListEmailIdentitiesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::ListEmailIdentitiesResponse
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb
Overview
A list of all of the identities that you've attempted to verify, regardless of whether or not those identities were successfully verified.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#email_identities ⇒ Array<Types::IdentityInfo>
An array that includes all of the email identities associated with your Amazon Web Services account.
-
#next_token ⇒ String
A token that indicates that there are additional configuration sets to list.
Instance Attribute Details
#email_identities ⇒ Array<Types::IdentityInfo>
An array that includes all of the email identities associated with your Amazon Web Services account.
5392 5393 5394 5395 5396 5397 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5392 class ListEmailIdentitiesResponse < Struct.new( :email_identities, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token that indicates that there are additional configuration sets
to list. To view additional configuration sets, issue another
request to ListEmailIdentities, and pass this token in the
NextToken parameter.
5392 5393 5394 5395 5396 5397 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5392 class ListEmailIdentitiesResponse < Struct.new( :email_identities, :next_token) SENSITIVE = [] include Aws::Structure end |