list_eula_acceptances(**kwargs)¶List EULA acceptances.
See also: AWS API Documentation
Request Syntax
response = client.list_eula_acceptances(
    eulaIds=[
        'string',
    ],
    nextToken='string',
    studioId='string'
)
The list of EULA IDs that have been previously accepted.
[REQUIRED]
The studio ID.
dict
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) --
The token for the next set of results, or null if there are no more results.
Exceptions
NimbleStudio.Client.exceptions.ResourceNotFoundExceptionNimbleStudio.Client.exceptions.ConflictExceptionNimbleStudio.Client.exceptions.ThrottlingExceptionNimbleStudio.Client.exceptions.ValidationExceptionNimbleStudio.Client.exceptions.AccessDeniedExceptionNimbleStudio.Client.exceptions.InternalServerErrorExceptionNimbleStudio.Client.exceptions.ServiceQuotaExceededException