Class: Aws::SES::Types::ListIdentitiesResponse

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ses/types.rb

Overview

A list of all identities that you have attempted to verify under your AWS account, regardless of verification status.

Instance Attribute Summary collapse

Instance Attribute Details

#identitiesArray<String>

A list of identities.

Returns:

  • (Array<String>)


2568
2569
2570
2571
2572
# File 'lib/aws-sdk-ses/types.rb', line 2568

class ListIdentitiesResponse < Struct.new(
  :identities,
  :next_token)
  include Aws::Structure
end

#next_tokenString

The token used for pagination.

Returns:

  • (String)


2568
2569
2570
2571
2572
# File 'lib/aws-sdk-ses/types.rb', line 2568

class ListIdentitiesResponse < Struct.new(
  :identities,
  :next_token)
  include Aws::Structure
end