Show / Hide Table of Contents

Class CfnDeploymentGroup.ECSServiceProperty

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

Inheritance
System.Object
CfnDeploymentGroup.ECSServiceProperty
Implements
CfnDeploymentGroup.IECSServiceProperty
Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.AWS.CodeDeploy.dll
Syntax (csharp)
public class ECSServiceProperty : Object, CfnDeploymentGroup.IECSServiceProperty
Syntax (vb)
Public Class ECSServiceProperty
    Inherits Object
    Implements CfnDeploymentGroup.IECSServiceProperty
Remarks

Link: 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

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

Link: 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.

public string ServiceName { get; set; }
Property Value

System.String

Remarks

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

Implements

CfnDeploymentGroup.IECSServiceProperty
Back to top Generated by DocFX