interface LifecycleHookReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AutoScaling.LifecycleHookReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsautoscaling#LifecycleHookReference |
Java | software.amazon.awscdk.interfaces.autoscaling.LifecycleHookReference |
Python | aws_cdk.interfaces.aws_autoscaling.LifecycleHookReference |
TypeScript | aws-cdk-lib » interfaces » aws_autoscaling » LifecycleHookReference |
A reference to a LifecycleHook 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_aws_autoscaling } from 'aws-cdk-lib/interfaces';
const lifecycleHookReference: interfaces_aws_autoscaling.LifecycleHookReference = {
autoScalingGroupName: 'autoScalingGroupName',
lifecycleHookName: 'lifecycleHookName',
};
Properties
| Name | Type | Description |
|---|---|---|
| auto | string | The AutoScalingGroupName of the LifecycleHook resource. |
| lifecycle | string | The LifecycleHookName of the LifecycleHook resource. |
autoScalingGroupName
Type:
string
The AutoScalingGroupName of the LifecycleHook resource.
lifecycleHookName
Type:
string
The LifecycleHookName of the LifecycleHook resource.

.NET
Go
Java
Python
TypeScript