Get Launch Configuration
| drs_get_launch_configuration | R Documentation | 
Gets a LaunchConfiguration, filtered by Source Server IDs¶
Description¶
Gets a LaunchConfiguration, filtered by Source Server IDs.
Usage¶
drs_get_launch_configuration(sourceServerID)
Arguments¶
| sourceServerID | [required] The ID of the Source Server that we want to retrieve a Launch Configuration for. | 
Value¶
A list with the following syntax:
list(
  copyPrivateIp = TRUE|FALSE,
  copyTags = TRUE|FALSE,
  ec2LaunchTemplateID = "string",
  launchDisposition = "STOPPED"|"STARTED",
  launchIntoInstanceProperties = list(
    launchIntoEC2InstanceID = "string"
  ),
  licensing = list(
    osByol = TRUE|FALSE
  ),
  name = "string",
  postLaunchEnabled = TRUE|FALSE,
  sourceServerID = "string",
  targetInstanceTypeRightSizingMethod = "NONE"|"BASIC"|"IN_AWS"
)
Request syntax¶
svc$get_launch_configuration(
  sourceServerID = "string"
)