Class: Aws::SESV2::Types::ListSuppressedDestinationsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::ListSuppressedDestinationsRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sesv2/types.rb
Overview
A request to obtain a list of email destinations that are on the suppression list for your account.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_date ⇒ Time
Used to filter the list of suppressed email destinations so that it only includes addresses that were added to the list before a specific date.
-
#next_token ⇒ String
A token returned from a previous call to ‘ListSuppressedDestinations` to indicate the position in the list of suppressed email addresses.
-
#page_size ⇒ Integer
The number of results to show in a single call to ‘ListSuppressedDestinations`.
-
#reasons ⇒ Array<String>
The factors that caused the email address to be added to .
-
#start_date ⇒ Time
Used to filter the list of suppressed email destinations so that it only includes addresses that were added to the list after a specific date.
Instance Attribute Details
#end_date ⇒ Time
Used to filter the list of suppressed email destinations so that it only includes addresses that were added to the list before a specific date.
4798 4799 4800 4801 4802 4803 4804 4805 4806 |
# File 'lib/aws-sdk-sesv2/types.rb', line 4798 class ListSuppressedDestinationsRequest < Struct.new( :reasons, :start_date, :end_date, :next_token, :page_size) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token returned from a previous call to ‘ListSuppressedDestinations` to indicate the position in the list of suppressed email addresses.
4798 4799 4800 4801 4802 4803 4804 4805 4806 |
# File 'lib/aws-sdk-sesv2/types.rb', line 4798 class ListSuppressedDestinationsRequest < Struct.new( :reasons, :start_date, :end_date, :next_token, :page_size) SENSITIVE = [] include Aws::Structure end |
#page_size ⇒ Integer
The number of results to show in a single call to ‘ListSuppressedDestinations`. If the number of results is larger than the number you specified in this parameter, then the response includes a `NextToken` element, which you can use to obtain additional results.
4798 4799 4800 4801 4802 4803 4804 4805 4806 |
# File 'lib/aws-sdk-sesv2/types.rb', line 4798 class ListSuppressedDestinationsRequest < Struct.new( :reasons, :start_date, :end_date, :next_token, :page_size) SENSITIVE = [] include Aws::Structure end |
#reasons ⇒ Array<String>
The factors that caused the email address to be added to .
4798 4799 4800 4801 4802 4803 4804 4805 4806 |
# File 'lib/aws-sdk-sesv2/types.rb', line 4798 class ListSuppressedDestinationsRequest < Struct.new( :reasons, :start_date, :end_date, :next_token, :page_size) SENSITIVE = [] include Aws::Structure end |
#start_date ⇒ Time
Used to filter the list of suppressed email destinations so that it only includes addresses that were added to the list after a specific date.
4798 4799 4800 4801 4802 4803 4804 4805 4806 |
# File 'lib/aws-sdk-sesv2/types.rb', line 4798 class ListSuppressedDestinationsRequest < Struct.new( :reasons, :start_date, :end_date, :next_token, :page_size) SENSITIVE = [] include Aws::Structure end |