Class: Aws::SES::Types::ListIdentitiesRequest

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

Overview

Represents a request to return a list of all identities (email addresses and domains) 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

#identity_typeString

The type of the identities to list. Possible values are “EmailAddress” and “Domain”. If this parameter is omitted, then all identities are listed.

Returns:

  • (String)


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

class ListIdentitiesRequest < Struct.new(
  :identity_type,
  :next_token,
  :max_items)
  SENSITIVE = []
  include Aws::Structure
end

#max_itemsInteger

The maximum number of identities per page. Possible values are 1-1000 inclusive.

Returns:

  • (Integer)


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

class ListIdentitiesRequest < Struct.new(
  :identity_type,
  :next_token,
  :max_items)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

The token to use for pagination.

Returns:

  • (String)


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

class ListIdentitiesRequest < Struct.new(
  :identity_type,
  :next_token,
  :max_items)
  SENSITIVE = []
  include Aws::Structure
end