interface ECSServiceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeDeploy.Mixins.CfnDeploymentGroupPropsMixin.ECSServiceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodedeploy/mixins#CfnDeploymentGroupPropsMixin_ECSServiceProperty |
Java | software.amazon.awscdk.mixins.preview.services.codedeploy.mixins.CfnDeploymentGroupPropsMixin.ECSServiceProperty |
Python | aws_cdk.mixins_preview.aws_codedeploy.mixins.CfnDeploymentGroupPropsMixin.ECSServiceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_codedeploy » mixins » CfnDeploymentGroupPropsMixin » ECSServiceProperty |
Contains the service and cluster names used to identify an Amazon ECS deployment's target.
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 eCSServiceProperty: codedeploy_mixins.CfnDeploymentGroupPropsMixin.ECSServiceProperty = {
clusterName: 'clusterName',
serviceName: 'serviceName',
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | The name of the cluster that the Amazon ECS service is associated with. |
| service | string | The name of the target Amazon ECS service. |
clusterName?
Type:
string
(optional)
The name of the cluster that the Amazon ECS service is associated with.
serviceName?
Type:
string
(optional)
The name of the target Amazon ECS service.

.NET
Go
Java
Python
TypeScript