Class: Aws::PinpointEmail::Types::ListEmailIdentitiesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::PinpointEmail::Types::ListEmailIdentitiesResponse
- Defined in:
- gems/aws-sdk-pinpointemail/lib/aws-sdk-pinpointemail/types.rb
Overview
A list of all of the identities that you've attempted to verify for use with Amazon Pinpoint, 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 identities associated with your Amazon Pinpoint 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 identities associated with your Amazon Pinpoint account.
2046 2047 2048 2049 2050 2051 |
# File 'gems/aws-sdk-pinpointemail/lib/aws-sdk-pinpointemail/types.rb', line 2046 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.
2046 2047 2048 2049 2050 2051 |
# File 'gems/aws-sdk-pinpointemail/lib/aws-sdk-pinpointemail/types.rb', line 2046 class ListEmailIdentitiesResponse < Struct.new( :email_identities, :next_token) SENSITIVE = [] include Aws::Structure end |