Class: Aws::SESV2::Types::ListContactsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::ListContactsResponse
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sesv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#contacts ⇒ Array<Types::Contact>
The contacts present in a specific contact list.
-
#next_token ⇒ String
A string token indicating that there might be additional contacts available to be listed.
Instance Attribute Details
#contacts ⇒ Array<Types::Contact>
The contacts present in a specific contact list.
4232 4233 4234 4235 4236 4237 |
# File 'lib/aws-sdk-sesv2/types.rb', line 4232 class ListContactsResponse < Struct.new( :contacts, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A string token indicating that there might be additional contacts available to be listed. Copy this token to a subsequent call to ‘ListContacts` with the same parameters to retrieve the next page of contacts.
4232 4233 4234 4235 4236 4237 |
# File 'lib/aws-sdk-sesv2/types.rb', line 4232 class ListContactsResponse < Struct.new( :contacts, :next_token) SENSITIVE = [] include Aws::Structure end |