Class: Aws::SESV2::Types::ListEmailIdentitiesResponse

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
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

Instance Attribute Details

#email_identitiesArray<Types::IdentityInfo>

An array that includes all of the email identities associated with your Amazon Web Services account.

Returns:



4470
4471
4472
4473
4474
4475
# File 'lib/aws-sdk-sesv2/types.rb', line 4470

class ListEmailIdentitiesResponse < Struct.new(
  :email_identities,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

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.

Returns:

  • (String)


4470
4471
4472
4473
4474
4475
# File 'lib/aws-sdk-sesv2/types.rb', line 4470

class ListEmailIdentitiesResponse < Struct.new(
  :email_identities,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end