Skip to content

Create Launch Configuration Template

drs_create_launch_configuration_template R Documentation

Creates a new Launch Configuration Template

Description

Creates a new Launch Configuration Template.

Usage

drs_create_launch_configuration_template(tags, launchDisposition,
  targetInstanceTypeRightSizingMethod, copyPrivateIp, copyTags, licensing,
  exportBucketArn, postLaunchEnabled, launchIntoSourceInstance)

Arguments

tags

Request to associate tags during creation of a Launch Configuration Template.

launchDisposition

Launch disposition.

targetInstanceTypeRightSizingMethod

Target instance type right-sizing method.

copyPrivateIp

Copy private IP.

copyTags

Copy tags.

licensing

Licensing.

exportBucketArn

S3 bucket ARN to export Source Network templates.

postLaunchEnabled

Whether we want to activate post-launch actions.

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.

Value

A list with the following syntax:

list(
  launchConfigurationTemplate = list(
    launchConfigurationTemplateID = "string",
    arn = "string",
    tags = list(
      "string"
    ),
    launchDisposition = "STOPPED"|"STARTED",
    targetInstanceTypeRightSizingMethod = "NONE"|"BASIC"|"IN_AWS",
    copyPrivateIp = TRUE|FALSE,
    copyTags = TRUE|FALSE,
    licensing = list(
      osByol = TRUE|FALSE
    ),
    exportBucketArn = "string",
    postLaunchEnabled = TRUE|FALSE,
    launchIntoSourceInstance = TRUE|FALSE
  )
)

Request syntax

svc$create_launch_configuration_template(
  tags = list(
    "string"
  ),
  launchDisposition = "STOPPED"|"STARTED",
  targetInstanceTypeRightSizingMethod = "NONE"|"BASIC"|"IN_AWS",
  copyPrivateIp = TRUE|FALSE,
  copyTags = TRUE|FALSE,
  licensing = list(
    osByol = TRUE|FALSE
  ),
  exportBucketArn = "string",
  postLaunchEnabled = TRUE|FALSE,
  launchIntoSourceInstance = TRUE|FALSE
)