Update Replication Configuration
| drs_update_replication_configuration | R Documentation |
Allows you to update a ReplicationConfiguration by Source Server ID¶
Description¶
Allows you to update a ReplicationConfiguration by Source Server ID.
Usage¶
drs_update_replication_configuration(associateDefaultSecurityGroup,
autoReplicateNewDisks, bandwidthThrottling, createPublicIP,
dataPlaneRouting, defaultLargeStagingDiskType, ebsEncryption,
ebsEncryptionKeyArn, name, pitPolicy, replicatedDisks,
replicationServerInstanceType, replicationServersSecurityGroupsIDs,
sourceServerID, stagingAreaSubnetId, stagingAreaTags,
useDedicatedReplicationServer)
Arguments¶
associateDefaultSecurityGroupWhether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration.
autoReplicateNewDisksWhether to allow the AWS replication agent to automatically replicate newly added disks.
bandwidthThrottlingConfigure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.
createPublicIPWhether to create a Public IP for the Recovery Instance by default.
dataPlaneRoutingThe data plane routing mechanism that will be used for replication.
defaultLargeStagingDiskTypeThe Staging Disk EBS volume type to be used during replication.
ebsEncryptionThe type of EBS encryption to be used during replication.
ebsEncryptionKeyArnThe ARN of the EBS encryption key to be used during replication.
nameThe name of the Replication Configuration.
pitPolicyThe Point in time (PIT) policy to manage snapshots taken during replication.
replicatedDisksThe configuration of the disks of the Source Server to be replicated.
replicationServerInstanceTypeThe instance type to be used for the replication server.
replicationServersSecurityGroupsIDsThe security group IDs that will be used by the replication server.
sourceServerID[required] The ID of the Source Server for this Replication Configuration.
stagingAreaSubnetIdThe subnet to be used by the replication staging area.
stagingAreaTagsA set of tags to be associated with all resources created in the replication staging area: EC2 replication server, EBS volumes, EBS snapshots, etc.
useDedicatedReplicationServerWhether to use a dedicated Replication Server in the replication staging area.
Value¶
A list with the following syntax:
list(
associateDefaultSecurityGroup = TRUE|FALSE,
autoReplicateNewDisks = TRUE|FALSE,
bandwidthThrottling = 123,
createPublicIP = TRUE|FALSE,
dataPlaneRouting = "PRIVATE_IP"|"PUBLIC_IP",
defaultLargeStagingDiskType = "GP2"|"GP3"|"ST1"|"AUTO",
ebsEncryption = "DEFAULT"|"CUSTOM"|"NONE",
ebsEncryptionKeyArn = "string",
name = "string",
pitPolicy = list(
list(
enabled = TRUE|FALSE,
interval = 123,
retentionDuration = 123,
ruleID = 123,
units = "MINUTE"|"HOUR"|"DAY"
)
),
replicatedDisks = list(
list(
deviceName = "string",
iops = 123,
isBootDisk = TRUE|FALSE,
optimizedStagingDiskType = "AUTO"|"GP2"|"GP3"|"IO1"|"SC1"|"ST1"|"STANDARD",
stagingDiskType = "AUTO"|"GP2"|"GP3"|"IO1"|"SC1"|"ST1"|"STANDARD",
throughput = 123
)
),
replicationServerInstanceType = "string",
replicationServersSecurityGroupsIDs = list(
"string"
),
sourceServerID = "string",
stagingAreaSubnetId = "string",
stagingAreaTags = list(
"string"
),
useDedicatedReplicationServer = TRUE|FALSE
)
Request syntax¶
svc$update_replication_configuration(
associateDefaultSecurityGroup = TRUE|FALSE,
autoReplicateNewDisks = TRUE|FALSE,
bandwidthThrottling = 123,
createPublicIP = TRUE|FALSE,
dataPlaneRouting = "PRIVATE_IP"|"PUBLIC_IP",
defaultLargeStagingDiskType = "GP2"|"GP3"|"ST1"|"AUTO",
ebsEncryption = "DEFAULT"|"CUSTOM"|"NONE",
ebsEncryptionKeyArn = "string",
name = "string",
pitPolicy = list(
list(
enabled = TRUE|FALSE,
interval = 123,
retentionDuration = 123,
ruleID = 123,
units = "MINUTE"|"HOUR"|"DAY"
)
),
replicatedDisks = list(
list(
deviceName = "string",
iops = 123,
isBootDisk = TRUE|FALSE,
optimizedStagingDiskType = "AUTO"|"GP2"|"GP3"|"IO1"|"SC1"|"ST1"|"STANDARD",
stagingDiskType = "AUTO"|"GP2"|"GP3"|"IO1"|"SC1"|"ST1"|"STANDARD",
throughput = 123
)
),
replicationServerInstanceType = "string",
replicationServersSecurityGroupsIDs = list(
"string"
),
sourceServerID = "string",
stagingAreaSubnetId = "string",
stagingAreaTags = list(
"string"
),
useDedicatedReplicationServer = TRUE|FALSE
)