list_eulas(**kwargs)¶List EULAs.
See also: AWS API Documentation
Request Syntax
response = client.list_eulas(
    eulaIds=[
        'string',
    ],
    nextToken='string'
)
The list of EULA IDs that should be returned
dict
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) --
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