Class CfnBudget.ResourceTagProperty
The tag structure that contains a tag key and value.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Budgets
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBudget.ResourceTagProperty : CfnBudget.IResourceTagProperty
Syntax (vb)
Public Class CfnBudget.ResourceTagProperty Implements CfnBudget.IResourceTagProperty
Remarks
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.Budgets;
var resourceTagProperty = new ResourceTagProperty {
Key = "key",
// the properties below are optional
Value = "value"
};
Synopsis
Constructors
| ResourceTagProperty() | The tag structure that contains a tag key and value. |
Properties
| Key | The key that's associated with the tag. |
| Value | The value that's associated with the tag. |
Constructors
ResourceTagProperty()
The tag structure that contains a tag key and value.
public ResourceTagProperty()
Remarks
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.Budgets;
var resourceTagProperty = new ResourceTagProperty {
Key = "key",
// the properties below are optional
Value = "value"
};
Properties
Key
The key that's associated with the tag.
public string Key { get; set; }
Property Value
Remarks
Value
The value that's associated with the tag.
public string? Value { get; set; }