ResilienceHubV2 / Paginator / ListSystems
ListSystems¶
- class ResilienceHubV2.Paginator.ListSystems¶
paginator = client.get_paginator('list_systems')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
ResilienceHubV2.Client.list_systems().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( ouId='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
ouId (string) – Filter systems by organizational unit (OU) identifier.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a
NextTokenwill be provided in the output that you can use to resume pagination.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextTokenfrom a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'systemSummaries': [ { 'systemId': 'string', 'name': 'string', 'systemArn': 'string', 'userJourneysCount': 123, 'servicesCount': 123, 'organizationId': 'string', 'ouId': 'string', 'createdAt': datetime(2015, 1, 1), 'updatedAt': datetime(2015, 1, 1) }, ], 'NextToken': 'string' }
Response Structure
(dict) –
systemSummaries (list) –
The list of system summaries.
(dict) –
Contains summary information about a system.
systemId (string) –
System ID for cross-account use without exposing account structure.
name (string) –
Resource name (used in ARN — no spaces allowed).
systemArn (string) –
ARN identifier.
userJourneysCount (integer) –
The number of user journeys in the system.
servicesCount (integer) –
The number of services in the system.
organizationId (string) –
Displayed only if caller has access.
ouId (string) –
Displayed only if caller has access.
createdAt (datetime) –
The timestamp when the system was created.
updatedAt (datetime) –
The timestamp when the system was last updated.
NextToken (string) –
A token to resume pagination.