interface MinimumHealthyHostsPerZoneProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeDeploy.Mixins.CfnDeploymentConfigPropsMixin.MinimumHealthyHostsPerZoneProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodedeploy/mixins#CfnDeploymentConfigPropsMixin_MinimumHealthyHostsPerZoneProperty |
Java | software.amazon.awscdk.mixins.preview.services.codedeploy.mixins.CfnDeploymentConfigPropsMixin.MinimumHealthyHostsPerZoneProperty |
Python | aws_cdk.mixins_preview.aws_codedeploy.mixins.CfnDeploymentConfigPropsMixin.MinimumHealthyHostsPerZoneProperty |
TypeScript | @aws-cdk/mixins-preview » aws_codedeploy » mixins » CfnDeploymentConfigPropsMixin » MinimumHealthyHostsPerZoneProperty |
Information about the minimum number of healthy instances per Availability Zone.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as codedeploy_mixins } from '@aws-cdk/mixins-preview/aws-codedeploy';
const minimumHealthyHostsPerZoneProperty: codedeploy_mixins.CfnDeploymentConfigPropsMixin.MinimumHealthyHostsPerZoneProperty = {
type: 'type',
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| type? | string | The type associated with the MinimumHealthyHostsPerZone option. |
| value? | number | The value associated with the MinimumHealthyHostsPerZone option. |
type?
Type:
string
(optional)
The type associated with the MinimumHealthyHostsPerZone option.
value?
Type:
number
(optional)
The value associated with the MinimumHealthyHostsPerZone option.

.NET
Go
Java
Python
TypeScript