Describe Launch Configuration Templates
drs_describe_launch_configuration_templates | R Documentation |
Lists all Launch Configuration Templates, filtered by Launch Configuration Template IDs¶
Description¶
Lists all Launch Configuration Templates, filtered by Launch Configuration Template IDs
Usage¶
drs_describe_launch_configuration_templates(
launchConfigurationTemplateIDs, maxResults, nextToken)
Arguments¶
launchConfigurationTemplateIDs |
Request to filter Launch Configuration Templates list by Launch Configuration Template ID. |
maxResults |
Maximum results to be returned in DescribeLaunchConfigurationTemplates. |
nextToken |
The token of the next Launch Configuration Template to retrieve. |
Value¶
A list with the following syntax:
list(
items = list(
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"
)
),
nextToken = "string"
)
Request syntax¶
svc$describe_launch_configuration_templates(
launchConfigurationTemplateIDs = list(
"string"
),
maxResults = 123,
nextToken = "string"
)