Show / Hide Table of Contents

Class CfnDeploymentGroup.EC2TagSetListObjectProperty

The EC2TagSet property type specifies information about groups of tags applied to Amazon EC2 instances.

Inheritance
object
CfnDeploymentGroup.EC2TagSetListObjectProperty
Implements
CfnDeploymentGroup.IEC2TagSetListObjectProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDeploymentGroup.EC2TagSetListObjectProperty : CfnDeploymentGroup.IEC2TagSetListObjectProperty
Syntax (vb)
Public Class CfnDeploymentGroup.EC2TagSetListObjectProperty Implements CfnDeploymentGroup.IEC2TagSetListObjectProperty
Remarks

The deployment group includes only Amazon EC2 instances identified by all the tag groups. Cannot be used in the same template as EC2TagFilters.

For more information about using tags and tag groups to help manage your Amazon EC2 instances and on-premises instances, see Tagging Instances for Deployment Groups in AWS CodeDeploy in the AWS CodeDeploy User Guide .

EC2TagSet is a property of the DeploymentGroup resource type.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-ec2tagsetlistobject.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 eC2TagSetListObjectProperty = new EC2TagSetListObjectProperty {
                 Ec2TagGroup = new [] { new EC2TagFilterProperty {
                     Key = "key",
                     Type = "type",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

EC2TagSetListObjectProperty()

The EC2TagSet property type specifies information about groups of tags applied to Amazon EC2 instances.

Properties

Ec2TagGroup

A list that contains other lists of Amazon EC2 instance tag groups.

Constructors

EC2TagSetListObjectProperty()

The EC2TagSet property type specifies information about groups of tags applied to Amazon EC2 instances.

public EC2TagSetListObjectProperty()
Remarks

The deployment group includes only Amazon EC2 instances identified by all the tag groups. Cannot be used in the same template as EC2TagFilters.

For more information about using tags and tag groups to help manage your Amazon EC2 instances and on-premises instances, see Tagging Instances for Deployment Groups in AWS CodeDeploy in the AWS CodeDeploy User Guide .

EC2TagSet is a property of the DeploymentGroup resource type.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-ec2tagsetlistobject.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 eC2TagSetListObjectProperty = new EC2TagSetListObjectProperty {
                 Ec2TagGroup = new [] { new EC2TagFilterProperty {
                     Key = "key",
                     Type = "type",
                     Value = "value"
                 } }
             };

Properties

Ec2TagGroup

A list that contains other lists of Amazon EC2 instance tag groups.

public object? Ec2TagGroup { get; set; }
Property Value

object

Remarks

For an instance to be included in the deployment group, it must be identified by all of the tag groups in the list.

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

Type union: either IResolvable or (either IResolvable or CfnDeploymentGroup.IEC2TagFilterProperty)[]

Implements

CfnDeploymentGroup.IEC2TagSetListObjectProperty
Back to top Generated by DocFX