interface LaunchConfigurationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AutoScaling.LaunchConfigurationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsautoscaling#LaunchConfigurationReference |
Java | software.amazon.awscdk.interfaces.autoscaling.LaunchConfigurationReference |
Python | aws_cdk.interfaces.aws_autoscaling.LaunchConfigurationReference |
TypeScript | aws-cdk-lib » interfaces » aws_autoscaling » LaunchConfigurationReference |
A reference to a LaunchConfiguration resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_autoscaling as interfaces_autoscaling } from 'aws-cdk-lib/interfaces';
const launchConfigurationReference: interfaces_autoscaling.LaunchConfigurationReference = {
launchConfigurationName: 'launchConfigurationName',
};
Properties
| Name | Type | Description |
|---|---|---|
| launch | string | The LaunchConfigurationName of the LaunchConfiguration resource. |
launchConfigurationName
Type:
string
The LaunchConfigurationName of the LaunchConfiguration resource.

.NET
Go
Java
Python
TypeScript