Show / Hide Table of Contents

Class CfnDeploymentGroupPropsMixin.ECSServiceProperty

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

Inheritance
object
CfnDeploymentGroupPropsMixin.ECSServiceProperty
Implements
CfnDeploymentGroupPropsMixin.IECSServiceProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.CodeDeploy
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDeploymentGroupPropsMixin.ECSServiceProperty : CfnDeploymentGroupPropsMixin.IECSServiceProperty
Syntax (vb)
Public Class CfnDeploymentGroupPropsMixin.ECSServiceProperty Implements CfnDeploymentGroupPropsMixin.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.CfnPropertyMixins.AWS.CodeDeploy;

             var eCSServiceProperty = new ECSServiceProperty {
                 ClusterName = "clusterName",
                 ServiceName = "serviceName"
             };

Synopsis

Constructors

ECSServiceProperty()

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

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()

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

public ECSServiceProperty()
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.CfnPropertyMixins.AWS.CodeDeploy;

             var eCSServiceProperty = new ECSServiceProperty {
                 ClusterName = "clusterName",
                 ServiceName = "serviceName"
             };

Properties

ClusterName

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

public string? ClusterName { get; set; }
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.

public string? ServiceName { get; set; }
Property Value

string

Remarks

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

Implements

CfnDeploymentGroupPropsMixin.IECSServiceProperty
Back to top Generated by DocFX