Class CfnDeploymentGroup.ECSServiceProperty
Contains the service and cluster names used to identify an Amazon ECS deployment's target.
Inheritance
System.Object
    CfnDeploymentGroup.ECSServiceProperty
  Implements
Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.AWS.CodeDeploy.dll
Syntax (csharp)
public class ECSServiceProperty : Object, CfnDeploymentGroup.IECSServicePropertySyntax (vb)
Public Class ECSServiceProperty
    Inherits Object
    Implements CfnDeploymentGroup.IECSServicePropertyRemarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CodeDeploy;
var eCSServiceProperty = new ECSServiceProperty {
    ClusterName = "clusterName",
    ServiceName = "serviceName"
};Synopsis
Constructors
| ECSServiceProperty() | 
Properties
| ClusterName | The name of the cluster that the Amazon ECS service is associated with. | 
| ServiceName | The name of the target Amazon ECS service. | 
Constructors
ECSServiceProperty()
public ECSServiceProperty()Properties
ClusterName
The name of the cluster that the Amazon ECS service is associated with.
public string ClusterName { get; set; }Property Value
System.String
Remarks
ServiceName
The name of the target Amazon ECS service.
public string ServiceName { get; set; }Property Value
System.String