WorkSpacesThinClient / Client / list_software_sets
list_software_sets#
- WorkSpacesThinClient.Client.list_software_sets(**kwargs)#
Returns a list of software sets.
See also: AWS API Documentation
Request Syntax
response = client.list_software_sets( nextToken='string', maxResults=123 )
- Parameters:
nextToken (string) – If
nextToken
is returned, there are more results available. The value ofnextToken
is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.maxResults (integer) –
The maximum number of results that are returned per call. You can use
nextToken
to obtain further pages of results.This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum.
- Return type:
dict
- Returns:
Response Syntax
{ 'softwareSets': [ { 'id': 'string', 'version': 'string', 'releasedAt': datetime(2015, 1, 1), 'supportedUntil': datetime(2015, 1, 1), 'validationStatus': 'VALIDATED'|'NOT_VALIDATED', 'arn': 'string' }, ], 'nextToken': 'string' }
Response Structure
(dict) –
softwareSets (list) –
Describes software sets.
(dict) –
Describes a software set.
id (string) –
The ID of the software set.
version (string) –
The version of the software set.
releasedAt (datetime) –
The timestamp of when the software set was released.
supportedUntil (datetime) –
The timestamp of the end of support for the software set.
validationStatus (string) –
An option to define if the software set has been validated.
arn (string) –
The Amazon Resource Name (ARN) of the software set.
nextToken (string) –
If
nextToken
is returned, there are more results available. The value ofnextToken
is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.
Exceptions
WorkSpacesThinClient.Client.exceptions.ValidationException
WorkSpacesThinClient.Client.exceptions.AccessDeniedException
WorkSpacesThinClient.Client.exceptions.ThrottlingException
WorkSpacesThinClient.Client.exceptions.InternalServerException