Class: Aws::SES::Types::ListIdentitiesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::ListIdentitiesRequest
- Defined in:
- gems/aws-sdk-ses/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.
2567 2568 2569 2570 2571 2572 2573 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 2567 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.
2567 2568 2569 2570 2571 2572 2573 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 2567 class ListIdentitiesRequest < Struct.new( :identity_type, :next_token, :max_items) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token to use for pagination.
2567 2568 2569 2570 2571 2572 2573 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 2567 class ListIdentitiesRequest < Struct.new( :identity_type, :next_token, :max_items) SENSITIVE = [] include Aws::Structure end |