Show / Hide Table of Contents

Class CfnDeploymentGroup.OnPremisesTagSetProperty

The OnPremisesTagSet property type specifies a list containing other lists of on-premises instance tag groups.

Inheritance
object
CfnDeploymentGroup.OnPremisesTagSetProperty
Implements
CfnDeploymentGroup.IOnPremisesTagSetProperty
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.OnPremisesTagSetProperty : CfnDeploymentGroup.IOnPremisesTagSetProperty
Syntax (vb)
Public Class CfnDeploymentGroup.OnPremisesTagSetProperty Implements CfnDeploymentGroup.IOnPremisesTagSetProperty
Remarks

In order for an instance to be included in the deployment group, it must be identified by all the tag groups in the list.

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 .

OnPremisesTagSet is a property of the DeploymentGroup resource.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-onpremisestagset.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 onPremisesTagSetProperty = new OnPremisesTagSetProperty {
                 OnPremisesTagSetList = new [] { new OnPremisesTagSetListObjectProperty {
                     OnPremisesTagGroup = new [] { new TagFilterProperty {
                         Key = "key",
                         Type = "type",
                         Value = "value"
                     } }
                 } }
             };

Synopsis

Constructors

OnPremisesTagSetProperty()

The OnPremisesTagSet property type specifies a list containing other lists of on-premises instance tag groups.

Properties

OnPremisesTagSetList

A list that contains other lists of on-premises instance tag groups.

Constructors

OnPremisesTagSetProperty()

The OnPremisesTagSet property type specifies a list containing other lists of on-premises instance tag groups.

public OnPremisesTagSetProperty()
Remarks

In order for an instance to be included in the deployment group, it must be identified by all the tag groups in the list.

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 .

OnPremisesTagSet is a property of the DeploymentGroup resource.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-onpremisestagset.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 onPremisesTagSetProperty = new OnPremisesTagSetProperty {
                 OnPremisesTagSetList = new [] { new OnPremisesTagSetListObjectProperty {
                     OnPremisesTagGroup = new [] { new TagFilterProperty {
                         Key = "key",
                         Type = "type",
                         Value = "value"
                     } }
                 } }
             };

Properties

OnPremisesTagSetList

A list that contains other lists of on-premises instance tag groups.

public object? OnPremisesTagSetList { 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.

Duplicates are not allowed.

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

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

Implements

CfnDeploymentGroup.IOnPremisesTagSetProperty
Back to top Generated by DocFX