NimbleStudio / Paginator / ListEulaAcceptances
ListEulaAcceptances#
- class NimbleStudio.Paginator.ListEulaAcceptances#
paginator = client.get_paginator('list_eula_acceptances')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
NimbleStudio.Client.list_eula_acceptances()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( eulaIds=[ 'string', ], studioId='string', PaginationConfig={ 'MaxItems': 123, 'StartingToken': 'string' } )
- Parameters:
eulaIds (list) –
The list of EULA IDs that have been previously accepted.
(string) –
studioId (string) –
[REQUIRED]
The studio ID.
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
{ 'eulaAcceptances': [ { 'acceptedAt': datetime(2015, 1, 1), 'acceptedBy': 'string', 'accepteeId': 'string', 'eulaAcceptanceId': 'string', 'eulaId': 'string' }, ], 'NextToken': 'string' }
Response Structure
(dict) –
eulaAcceptances (list) –
A collection of EULA acceptances.
(dict) –
The acceptance of a EULA, required to use Amazon-provided streaming images.
acceptedAt (datetime) –
The ISO timestamp in seconds for when the EULA was accepted.
acceptedBy (string) –
The ID of the person who accepted the EULA.
accepteeId (string) –
The ID of the acceptee.
eulaAcceptanceId (string) –
The EULA acceptance ID.
eulaId (string) –
The EULA ID.
NextToken (string) –
A token to resume pagination.