mgn.Paginator.
DescribeReplicationConfigurationTemplates
¶paginator = client.get_paginator('describe_replication_configuration_templates')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from mgn.Client.describe_replication_configuration_templates()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
replicationConfigurationTemplateIDs=[
'string',
],
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
Request to describe Replication Configuration template by template IDs.
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
{
'items': [
{
'arn': 'string',
'associateDefaultSecurityGroup': True|False,
'bandwidthThrottling': 123,
'createPublicIP': True|False,
'dataPlaneRouting': 'PRIVATE_IP'|'PUBLIC_IP',
'defaultLargeStagingDiskType': 'GP2'|'ST1'|'GP3',
'ebsEncryption': 'DEFAULT'|'CUSTOM',
'ebsEncryptionKeyArn': 'string',
'replicationConfigurationTemplateID': 'string',
'replicationServerInstanceType': 'string',
'replicationServersSecurityGroupsIDs': [
'string',
],
'stagingAreaSubnetId': 'string',
'stagingAreaTags': {
'string': 'string'
},
'tags': {
'string': 'string'
},
'useDedicatedReplicationServer': True|False
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
items (list) --
Request to describe Replication Configuration template by items.
(dict) --
arn (string) --
Replication Configuration template ARN.
associateDefaultSecurityGroup (boolean) --
Replication Configuration template associate default Application Migration Service Security group.
bandwidthThrottling (integer) --
Replication Configuration template bandwidth throttling.
createPublicIP (boolean) --
Replication Configuration template create Public IP.
dataPlaneRouting (string) --
Replication Configuration template data plane routing.
defaultLargeStagingDiskType (string) --
Replication Configuration template use default large Staging Disk type.
ebsEncryption (string) --
Replication Configuration template EBS encryption.
ebsEncryptionKeyArn (string) --
Replication Configuration template EBS encryption key ARN.
replicationConfigurationTemplateID (string) --
Replication Configuration template ID.
replicationServerInstanceType (string) --
Replication Configuration template server instance type.
replicationServersSecurityGroupsIDs (list) --
Replication Configuration template server Security Groups IDs.
stagingAreaSubnetId (string) --
Replication Configuration template Staging Area subnet ID.
stagingAreaTags (dict) --
Replication Configuration template Staging Area Tags.
tags (dict) --
Replication Configuration template Tags.
useDedicatedReplicationServer (boolean) --
Replication Configuration template use Dedicated Replication Server.
NextToken (string) --
A token to resume pagination.