Omics.Client.list_run_groups(**kwargs)¶Retrieves a list of run groups.
See also: AWS API Documentation
Request Syntax
response = client.list_run_groups(
maxResults=123,
name='string',
startingToken='string'
)
dict
Response Syntax
{
'items': [
{
'arn': 'string',
'creationTime': datetime(2015, 1, 1),
'id': 'string',
'maxCpus': 123,
'maxDuration': 123,
'maxRuns': 123,
'name': 'string'
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
items (list) --
A list of groups.
(dict) --
A run group.
arn (string) --
The group's ARN.
creationTime (datetime) --
When the group was created.
id (string) --
The group's ID.
maxCpus (integer) --
The group's maximum CPU count setting.
maxDuration (integer) --
The group's maximum duration setting in minutes.
maxRuns (integer) --
The group's maximum concurrent run setting.
name (string) --
The group's name.
nextToken (string) --
A pagination token that's included if more results are available.
Exceptions
Omics.Client.exceptions.InternalServerExceptionOmics.Client.exceptions.ServiceQuotaExceededExceptionOmics.Client.exceptions.ThrottlingExceptionOmics.Client.exceptions.ValidationExceptionOmics.Client.exceptions.ConflictExceptionOmics.Client.exceptions.ResourceNotFoundExceptionOmics.Client.exceptions.AccessDeniedExceptionOmics.Client.exceptions.RequestTimeoutException