SMS.Paginator.
GetConnectors
¶paginator = client.get_paginator('get_connectors')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from SMS.Client.get_connectors()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
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.
{
'connectorList': [
{
'connectorId': 'string',
'version': 'string',
'status': 'HEALTHY'|'UNHEALTHY',
'capabilityList': [
'VSPHERE'|'SCVMM'|'HYPERV-MANAGER'|'SNAPSHOT_BATCHING'|'SMS_OPTIMIZED',
],
'vmManagerName': 'string',
'vmManagerType': 'VSPHERE'|'SCVMM'|'HYPERV-MANAGER',
'vmManagerId': 'string',
'ipAddress': 'string',
'macAddress': 'string',
'associatedOn': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
Information about the registered connectors.
Represents a connector.
The ID of the connector.
The connector version.
The status of the connector.
The capabilities of the connector.
The name of the VM manager.
The VM management product.
The ID of the VM manager.
The IP address of the connector.
The MAC address of the connector.
The time the connector was associated.
A token to resume pagination.