SecurityAgent / Client / list_agent_spaces
list_agent_spaces¶
- SecurityAgent.Client.list_agent_spaces(**kwargs)¶
Returns a paginated list of agent space summaries in your account.
See also: AWS API Documentation
Request Syntax
response = client.list_agent_spaces( nextToken='string', maxResults=123 )
- Parameters:
nextToken (string) – A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request. For subsequent calls, use the nextToken value returned from the previous request.
maxResults (integer) – The maximum number of results to return in a single call.
- Return type:
dict
- Returns:
Response Syntax
{ 'agentSpaceSummaries': [ { 'agentSpaceId': 'string', 'name': 'string', 'createdAt': datetime(2015, 1, 1), 'updatedAt': datetime(2015, 1, 1) }, ], 'nextToken': 'string' }
Response Structure
(dict) –
Output for the ListAgentSpaces operation.
agentSpaceSummaries (list) –
The list of agent space summaries.
(dict) –
Contains summary information about an agent space.
agentSpaceId (string) –
The unique identifier of the agent space.
name (string) –
The name of the agent space.
createdAt (datetime) –
The date and time the agent space was created, in UTC format.
updatedAt (datetime) –
The date and time the agent space was last updated, in UTC format.
nextToken (string) –
A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request. For subsequent calls, use the nextToken value returned from the previous request.