interface DaemonDeploymentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ECS.CfnDaemonPropsMixin.DaemonDeploymentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsecs#CfnDaemonPropsMixin_DaemonDeploymentConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ecs.CfnDaemonPropsMixin.DaemonDeploymentConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ecs.CfnDaemonPropsMixin.DaemonDeploymentConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ecs » CfnDaemonPropsMixin » 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/cfn-property-mixins';
const daemonDeploymentConfigurationProperty: ecs.CfnDaemonPropsMixin.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