interface LifecycleEventConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.OpsWorks.CfnLayer.LifecycleEventConfigurationProperty |
Java | software.amazon.awscdk.services.opsworks.CfnLayer.LifecycleEventConfigurationProperty |
Python | aws_cdk.aws_opsworks.CfnLayer.LifecycleEventConfigurationProperty |
TypeScript | @aws-cdk/aws-opsworks » CfnLayer » LifecycleEventConfigurationProperty |
Specifies the lifecycle event configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as opsworks from '@aws-cdk/aws-opsworks';
const lifecycleEventConfigurationProperty: opsworks.CfnLayer.LifecycleEventConfigurationProperty = {
shutdownEventConfiguration: {
delayUntilElbConnectionsDrained: false,
executionTimeout: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| shutdown | IResolvable | Shutdown | The Shutdown event configuration. |
shutdownEventConfiguration?
Type:
IResolvable | Shutdown
(optional)
The Shutdown event configuration.

.NET
Java
Python
TypeScript