EC2.Paginator.
GetIpamDiscoveredAccounts
¶paginator = client.get_paginator('get_ipam_discovered_accounts')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from EC2.Client.get_ipam_discovered_accounts()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
DryRun=True|False,
IpamResourceDiscoveryId='string',
DiscoveryRegion='string',
Filters=[
{
'Name': 'string',
'Values': [
'string',
]
},
],
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
DryRunOperation
. Otherwise, it is UnauthorizedOperation
.[REQUIRED]
A resource discovery ID.
[REQUIRED]
The Amazon Web Services Region that the account information is returned from.
Discovered account filters.
A filter name and value pair that is used to return a more specific list of results from a describe operation. Filters can be used to match a set of resources by specific criteria, such as tags, attributes, or IDs.
If you specify multiple filters, the filters are joined with an AND
, and the request returns only results that match all of the specified filters.
The name of the filter. Filter names are case-sensitive.
The filter values. Filter values are case-sensitive. If you specify multiple values for a filter, the values are joined with an OR
, and the request returns all results that match any of the specified values.
A dictionary that provides parameters to control pagination.
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 NextToken
will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
dict
Response Syntax
{
'IpamDiscoveredAccounts': [
{
'AccountId': 'string',
'DiscoveryRegion': 'string',
'FailureReason': {
'Code': 'assume-role-failure'|'throttling-failure'|'unauthorized-failure',
'Message': 'string'
},
'LastAttemptedDiscoveryTime': datetime(2015, 1, 1),
'LastSuccessfulDiscoveryTime': datetime(2015, 1, 1)
},
],
}
Response Structure
(dict) --
IpamDiscoveredAccounts (list) --
Discovered accounts.
(dict) --
An IPAM discovered account. A discovered account is an Amazon Web Services account that is monitored under a resource discovery. If you have integrated IPAM with Amazon Web Services Organizations, all accounts in the organization are discovered accounts.
AccountId (string) --
The account ID.
DiscoveryRegion (string) --
The Amazon Web Services Region that the account information is returned from. An account can be discovered in multiple regions and will have a separate discovered account for each Region.
FailureReason (dict) --
The resource discovery failure reason.
Code (string) --
The discovery failure code.
assume-role-failure
- IPAM could not assume the Amazon Web Services IAM service-linked role. This could be because of any of the following:throttling-failure
- IPAM account is already using the allotted transactions per second and IPAM is receiving a throttling error when assuming the Amazon Web Services IAM SLR.unauthorized-failure
- Amazon Web Services account making the request is not authorized. For more information, see AuthFailure in the Amazon Elastic Compute Cloud API Reference .Message (string) --
The discovery failure message.
LastAttemptedDiscoveryTime (datetime) --
The last attempted resource discovery time.
LastSuccessfulDiscoveryTime (datetime) --
The last successful resource discovery time.