Class: Aws::SES::Types::ListIdentitiesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::ListIdentitiesRequest
- 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
-
#identity_type ⇒ String
The type of the identities to list.
-
#max_items ⇒ Integer
The maximum number of identities per page.
-
#next_token ⇒ String
The token to use for pagination.
Instance Attribute Details
#identity_type ⇒ String
The type of the identities to list. Possible values are “EmailAddress” and “Domain”. If this parameter is omitted, then all identities are listed.
2606 2607 2608 2609 2610 2611 2612 |
# File 'lib/aws-sdk-ses/types.rb', line 2606 class ListIdentitiesRequest < Struct.new( :identity_type, :next_token, :max_items) SENSITIVE = [] include Aws::Structure end |
#max_items ⇒ Integer
The maximum number of identities per page. Possible values are 1-1000 inclusive.
2606 2607 2608 2609 2610 2611 2612 |
# File 'lib/aws-sdk-ses/types.rb', line 2606 class ListIdentitiesRequest < Struct.new( :identity_type, :next_token, :max_items) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token to use for pagination.
2606 2607 2608 2609 2610 2611 2612 |
# File 'lib/aws-sdk-ses/types.rb', line 2606 class ListIdentitiesRequest < Struct.new( :identity_type, :next_token, :max_items) SENSITIVE = [] include Aws::Structure end |