Skip to content

Delete Launch Configuration

autoscaling_delete_launch_configuration R Documentation

Deletes the specified launch configuration

Description

Deletes the specified launch configuration.

The launch configuration must not be attached to an Auto Scaling group. When this call completes, the launch configuration is no longer available for use.

Usage

autoscaling_delete_launch_configuration(LaunchConfigurationName)

Arguments

LaunchConfigurationName

[required] The name of the launch configuration.

Value

An empty list.

Request syntax

svc$delete_launch_configuration(
  LaunchConfigurationName = "string"
)

Examples

## Not run: 
# This example deletes the specified launch configuration.
svc$delete_launch_configuration(
  LaunchConfigurationName = "my-launch-config"
)

## End(Not run)