Show / Hide Table of Contents

Class CfnBudget.TagValuesProperty

The values that are available for a tag.

Inheritance
object
CfnBudget.TagValuesProperty
Implements
CfnBudget.ITagValuesProperty
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.Budgets
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBudget.TagValuesProperty : CfnBudget.ITagValuesProperty
Syntax (vb)
Public Class CfnBudget.TagValuesProperty Implements CfnBudget.ITagValuesProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-tagvalues.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.Budgets;

             var tagValuesProperty = new TagValuesProperty {
                 Key = "key",
                 MatchOptions = new [] { "matchOptions" },
                 Values = new [] { "values" }
             };

Synopsis

Constructors

TagValuesProperty()

The values that are available for a tag.

Properties

Key

The key for the tag.

MatchOptions

The match options that you can use to filter your results.

Values

The specific value of the tag.

Constructors

TagValuesProperty()

The values that are available for a tag.

public TagValuesProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-tagvalues.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.Budgets;

             var tagValuesProperty = new TagValuesProperty {
                 Key = "key",
                 MatchOptions = new [] { "matchOptions" },
                 Values = new [] { "values" }
             };

Properties

Key

The key for the tag.

public string? Key { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-tagvalues.html#cfn-budgets-budget-tagvalues-key

MatchOptions

The match options that you can use to filter your results.

public string[]? MatchOptions { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-tagvalues.html#cfn-budgets-budget-tagvalues-matchoptions

Values

The specific value of the tag.

public string[]? Values { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-tagvalues.html#cfn-budgets-budget-tagvalues-values

Implements

CfnBudget.ITagValuesProperty
Back to top Generated by DocFX