UserNotificationsContacts / Paginator / ListEmailContacts
ListEmailContacts#
- class UserNotificationsContacts.Paginator.ListEmailContacts#
paginator = client.get_paginator('list_email_contacts')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
UserNotificationsContacts.Client.list_email_contacts()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a
NextToken
will be provided in the output that you can use to resume pagination.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextToken
from a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'emailContacts': [ { 'arn': 'string', 'name': 'string', 'address': 'string', 'status': 'inactive'|'active', 'creationTime': datetime(2015, 1, 1), 'updateTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' }
Response Structure
(dict) –
emailContacts (list) –
A list of email contacts.
(dict) –
An email contact.
arn (string) –
The Amazon Resource Name (ARN) of the email contact.
name (string) –
The name of the email contact.
address (string) –
The email address this email contact points to. The activation email and any subscribed emails are sent here.
status (string) –
The status of the email contact. Only activated email contacts receive emails.
creationTime (datetime) –
The creation time of the resource.
updateTime (datetime) –
The time the resource was last updated.
NextToken (string) –
A token to resume pagination.