SSM / Paginator / ValidateCloudConnector
ValidateCloudConnector¶
- class SSM.Paginator.ValidateCloudConnector¶
paginator = client.get_paginator('validate_cloud_connector')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
SSM.Client.validate_cloud_connector().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( CloudConnectorId='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
CloudConnectorId (string) –
[REQUIRED]
The ID of the cloud connector to validate.
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
{ 'ValidationFindings': [ { 'Type': 'INFO'|'WARN'|'ERROR', 'Code': 'TargetInaccessible'|'TargetUnusable'|'TargetStateWarning'|'AwsRoleAssumptionFailed'|'WebIdentityTokenFailed'|'OutboundWebIdentityFederationDisabled'|'ProviderCredentialCreationFailed'|'TenantSummary'|'SubscriptionAccessible', 'Message': 'string', 'ProviderMessage': 'string', 'Scope': { 'Type': 'azure:tenant'|'azure:subscription', 'Id': 'string' } }, ], }
Response Structure
(dict) –
ValidationFindings (list) –
A list of validation findings for the cloud connector.
(dict) –
A validation finding from a cloud connector validation check.
Type (string) –
The type of the validation finding.
Code (string) –
A code that identifies the specific validation finding.
Message (string) –
A message that describes the validation finding.
ProviderMessage (string) –
A message from the third-party cloud provider related to the validation finding.
Scope (dict) –
The scope of the validation finding, identifying the specific resource affected.
Type (string) –
The type of the resource scope.
Id (string) –
The ID of the resource within the scope.