Interface CfnDeploymentGroup.ECSServiceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeploymentGroup.ECSServiceProperty.Jsii$Proxy
Enclosing class:
CfnDeploymentGroup

@Stability(Stable) public static interface CfnDeploymentGroup.ECSServiceProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.codedeploy.*;
 ECSServiceProperty eCSServiceProperty = ECSServiceProperty.builder()
         .clusterName("clusterName")
         .serviceName("serviceName")
         .build();
 

See Also: