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 Amazon Web Services account, regardless of verification status.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#identitiesArray<String>

A list of identities.

Returns:

  • (Array<String>)


2588
2589
2590
2591
2592
2593
# File 'lib/aws-sdk-ses/types.rb', line 2588

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

#next_tokenString

The token used for pagination.

Returns:

  • (String)


2588
2589
2590
2591
2592
2593
# File 'lib/aws-sdk-ses/types.rb', line 2588

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