NimbleStudio / Paginator / ListEulas
ListEulas#
- class NimbleStudio.Paginator.ListEulas#
paginator = client.get_paginator('list_eulas')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
NimbleStudio.Client.list_eulas()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( eulaIds=[ 'string', ], PaginationConfig={ 'MaxItems': 123, 'StartingToken': 'string' } )
- Parameters:
eulaIds (list) –
The list of EULA IDs that should be returned
(string) –
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.StartingToken (string) –
A token to specify where to start paginating. This is the
NextToken
from a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'eulas': [ { 'content': 'string', 'createdAt': datetime(2015, 1, 1), 'eulaId': 'string', 'name': 'string', 'updatedAt': datetime(2015, 1, 1) }, ], 'NextToken': 'string' }
Response Structure
(dict) –
eulas (list) –
A collection of EULA resources.
(dict) –
Represents a EULA resource.
content (string) –
The EULA content.
createdAt (datetime) –
The ISO timestamp in seconds for when the resource was created.
eulaId (string) –
The EULA ID.
name (string) –
The name for the EULA.
updatedAt (datetime) –
The ISO timestamp in seconds for when the resource was updated.
NextToken (string) –
A token to resume pagination.