Update Launch Configuration Template
drs_update_launch_configuration_template | R Documentation |
Updates an existing Launch Configuration Template by ID¶
Description¶
Updates an existing Launch Configuration Template by ID.
Usage¶
drs_update_launch_configuration_template(copyPrivateIp, copyTags,
exportBucketArn, launchConfigurationTemplateID, launchDisposition,
launchIntoSourceInstance, licensing, postLaunchEnabled,
targetInstanceTypeRightSizingMethod)
Arguments¶
copyPrivateIp
Copy private IP.
copyTags
Copy tags.
exportBucketArn
S3 bucket ARN to export Source Network templates.
launchConfigurationTemplateID
[required] Launch Configuration Template ID.
launchDisposition
Launch disposition.
launchIntoSourceInstance
DRS will set the 'launch into instance ID' of any source server when performing a drill, recovery or failback to the previous region or availability zone, using the instance ID of the source instance.
licensing
Licensing.
postLaunchEnabled
Whether we want to activate post-launch actions.
targetInstanceTypeRightSizingMethod
Target instance type right-sizing method.
Value¶
A list with the following syntax:
list(
launchConfigurationTemplate = list(
arn = "string",
copyPrivateIp = TRUE|FALSE,
copyTags = TRUE|FALSE,
exportBucketArn = "string",
launchConfigurationTemplateID = "string",
launchDisposition = "STOPPED"|"STARTED",
launchIntoSourceInstance = TRUE|FALSE,
licensing = list(
osByol = TRUE|FALSE
),
postLaunchEnabled = TRUE|FALSE,
tags = list(
"string"
),
targetInstanceTypeRightSizingMethod = "NONE"|"BASIC"|"IN_AWS"
)
)
Request syntax¶
svc$update_launch_configuration_template(
copyPrivateIp = TRUE|FALSE,
copyTags = TRUE|FALSE,
exportBucketArn = "string",
launchConfigurationTemplateID = "string",
launchDisposition = "STOPPED"|"STARTED",
launchIntoSourceInstance = TRUE|FALSE,
licensing = list(
osByol = TRUE|FALSE
),
postLaunchEnabled = TRUE|FALSE,
targetInstanceTypeRightSizingMethod = "NONE"|"BASIC"|"IN_AWS"
)