Class: Aws::SESV2::Types::ListContactListsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::ListContactListsResponse
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#contact_lists ⇒ Array<Types::ContactList>
The available contact lists.
-
#next_token ⇒ String
A string token indicating that there might be additional contact lists available to be listed.
Instance Attribute Details
#contact_lists ⇒ Array<Types::ContactList>
The available contact lists.
4581 4582 4583 4584 4585 4586 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 4581 class ListContactListsResponse < Struct.new( :contact_lists, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A string token indicating that there might be additional contact
lists available to be listed. Copy this token to a subsequent call
to ListContactLists
with the same parameters to retrieve the next
page of contact lists.
4581 4582 4583 4584 4585 4586 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 4581 class ListContactListsResponse < Struct.new( :contact_lists, :next_token) SENSITIVE = [] include Aws::Structure end |