Show / Hide Table of Contents

Class CfnBudget.ExpressionDimensionValuesProperty

Contains the specifications for the filters to use for your request.

Inheritance
object
CfnBudget.ExpressionDimensionValuesProperty
Implements
CfnBudget.IExpressionDimensionValuesProperty
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.ExpressionDimensionValuesProperty : CfnBudget.IExpressionDimensionValuesProperty
Syntax (vb)
Public Class CfnBudget.ExpressionDimensionValuesProperty Implements CfnBudget.IExpressionDimensionValuesProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-expressiondimensionvalues.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 expressionDimensionValuesProperty = new ExpressionDimensionValuesProperty {
                 Key = "key",
                 MatchOptions = new [] { "matchOptions" },
                 Values = new [] { "values" }
             };

Synopsis

Constructors

ExpressionDimensionValuesProperty()

Contains the specifications for the filters to use for your request.

Properties

Key

The name of the dimension that you want to filter on.

MatchOptions

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

Values

The metadata values you can specify to filter upon, so that the results all match at least one of the specified values.

Constructors

ExpressionDimensionValuesProperty()

Contains the specifications for the filters to use for your request.

public ExpressionDimensionValuesProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-expressiondimensionvalues.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 expressionDimensionValuesProperty = new ExpressionDimensionValuesProperty {
                 Key = "key",
                 MatchOptions = new [] { "matchOptions" },
                 Values = new [] { "values" }
             };

Properties

Key

The name of the dimension that you want to filter on.

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

string

Remarks

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

MatchOptions

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

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

string[]

Remarks

You can specify only one of these values in the array.

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

Values

The metadata values you can specify to filter upon, so that the results all match at least one of the specified values.

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

string[]

Remarks

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

Implements

CfnBudget.IExpressionDimensionValuesProperty
Back to top Generated by DocFX