Show / Hide Table of Contents

Interface CfnDeploymentGroup.IECSServiceProperty

Contains the service and cluster names used to identify an Amazon ECS deployment's target.

Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDeploymentGroup.IECSServiceProperty
Syntax (vb)
Public Interface CfnDeploymentGroup.IECSServiceProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-ecsservice.html

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

Properties

ClusterName

The name of the cluster that the Amazon ECS service is associated with.

ServiceName

The name of the target Amazon ECS service.

Properties

ClusterName

The name of the cluster that the Amazon ECS service is associated with.

string ClusterName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-ecsservice.html#cfn-codedeploy-deploymentgroup-ecsservice-clustername

ServiceName

The name of the target Amazon ECS service.

string ServiceName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-ecsservice.html#cfn-codedeploy-deploymentgroup-ecsservice-servicename

Back to top Generated by DocFX