interface DaemonDeploymentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CfnDaemon.DaemonDeploymentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnDaemon_DaemonDeploymentConfigurationProperty |
Java | software.amazon.awscdk.services.ecs.CfnDaemon.DaemonDeploymentConfigurationProperty |
Python | aws_cdk.aws_ecs.CfnDaemon.DaemonDeploymentConfigurationProperty |
TypeScript | aws-cdk-lib » aws_ecs » CfnDaemon » DaemonDeploymentConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecs as ecs } from 'aws-cdk-lib';
const daemonDeploymentConfigurationProperty: ecs.CfnDaemon.DaemonDeploymentConfigurationProperty = {
alarms: {
alarmNames: ['alarmNames'],
enable: false,
},
bakeTimeInMinutes: 123,
drainPercent: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| alarms? | IResolvable | Daemon | |
| bake | number | |
| drain | number |
alarms?
Type:
IResolvable | Daemon
(optional)
bakeTimeInMinutes?
Type:
number
(optional)
drainPercent?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript