Class CfnDeploymentGroup.TagFilterProperty
TagFilter is a property type of the AWS::CodeDeploy::DeploymentGroup resource that specifies which on-premises instances to associate with the deployment group. To register on-premise instances with AWS CodeDeploy , see Configure Existing On-Premises Instances by Using AWS CodeDeploy in the AWS CodeDeploy User Guide .
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDeploymentGroup.TagFilterProperty : CfnDeploymentGroup.ITagFilterProperty
Syntax (vb)
Public Class CfnDeploymentGroup.TagFilterProperty Implements CfnDeploymentGroup.ITagFilterProperty
Remarks
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 .
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 tagFilterProperty = new TagFilterProperty {
Key = "key",
Type = "type",
Value = "value"
};
Synopsis
Constructors
| TagFilterProperty() |
|
Properties
| Key | The on-premises instance tag filter key. |
| Type | The on-premises instance tag filter type:. |
| Value | The on-premises instance tag filter value. |
Constructors
TagFilterProperty()
TagFilter is a property type of the AWS::CodeDeploy::DeploymentGroup resource that specifies which on-premises instances to associate with the deployment group. To register on-premise instances with AWS CodeDeploy , see Configure Existing On-Premises Instances by Using AWS CodeDeploy in the AWS CodeDeploy User Guide .
public TagFilterProperty()
Remarks
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 .
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 tagFilterProperty = new TagFilterProperty {
Key = "key",
Type = "type",
Value = "value"
};
Properties
Key
The on-premises instance tag filter key.
public string? Key { get; set; }
Property Value
Remarks
Type
The on-premises instance tag filter type:.
public string? Type { get; set; }
Property Value
Remarks
Value
The on-premises instance tag filter value.
public string? Value { get; set; }