Class CfnBudgetsActionPropsMixin.ResourceTagProperty
The tag structure that contains a tag key and value.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Budgets.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnBudgetsActionPropsMixin.ResourceTagProperty : CfnBudgetsActionPropsMixin.IResourceTagProperty
Syntax (vb)
Public Class CfnBudgetsActionPropsMixin.ResourceTagProperty Implements CfnBudgetsActionPropsMixin.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.Mixins.Preview.AWS.Budgets.Mixins;
var resourceTagProperty = new ResourceTagProperty {
Key = "key",
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.Mixins.Preview.AWS.Budgets.Mixins;
var resourceTagProperty = new ResourceTagProperty {
Key = "key",
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; }