ResilienceHubV2 / Paginator / ListDependencies
ListDependencies¶
- class ResilienceHubV2.Paginator.ListDependencies¶
paginator = client.get_paginator('list_dependencies')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
ResilienceHubV2.Client.list_dependencies().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( serviceArn='string', queryRangeStartTime=datetime(2015, 1, 1), queryRangeEndTime=datetime(2015, 1, 1), queryRangeGranularity='HOURLY'|'DAILY', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
serviceArn (string) – ARN identifier.
queryRangeStartTime (datetime) – The start time for the dependency query range.
queryRangeEndTime (datetime) – The end time for the dependency query range.
queryRangeGranularity (string) – The granularity for the dependency query range.
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
{ 'dependencySummaries': [ { 'dependencyId': 'string', 'serviceArn': 'string', 'dependencyName': 'string', 'dnsName': 'string', 'location': 'string', 'lastDetectedTime': datetime(2015, 1, 1), 'sourceRegions': [ 'string', ], 'provider': 'string', 'queryRange': { 'startTime': datetime(2015, 1, 1), 'endTime': datetime(2015, 1, 1), 'granularity': 'HOURLY'|'DAILY', 'dataPoints': [ { 'timestamp': datetime(2015, 1, 1), 'queryCount': 123 }, ] }, 'criticality': 'HARD'|'SOFT'|'UNKNOWN', 'comment': 'string' }, ], 'NextToken': 'string' }
Response Structure
(dict) –
dependencySummaries (list) –
The list of dependency summaries.
(dict) –
Contains summary information about a discovered dependency.
dependencyId (string) –
The unique identifier of the dependency.
serviceArn (string) –
ARN identifier.
dependencyName (string) –
The name of the dependency.
dnsName (string) –
The DNS name associated with the dependency.
location (string) –
The location of the dependency.
lastDetectedTime (datetime) –
The timestamp when the dependency was last detected.
sourceRegions (list) –
The source Regions from which the dependency was detected.
(string) –
provider (string) –
The provider of the dependency.
queryRange (dict) –
The query range data for the dependency.
startTime (datetime) –
The start time of the query range.
endTime (datetime) –
The end time of the query range.
granularity (string) –
The granularity of the query range data points.
dataPoints (list) –
The data points within the query range.
(dict) –
A data point in a dependency query range.
timestamp (datetime) –
The timestamp of the data point.
queryCount (integer) –
The number of queries at this data point.
criticality (string) –
The criticality level of the dependency.
comment (string) –
A user-provided comment about the dependency.
NextToken (string) –
A token to resume pagination.