Interface CfnBudget.IExpressionDimensionValuesProperty
Contains the specifications for the filters to use for your request.
Namespace: Amazon.CDK.AWS.Budgets
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnBudget.IExpressionDimensionValuesProperty
Syntax (vb)
Public Interface CfnBudget.IExpressionDimensionValuesProperty
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 expressionDimensionValuesProperty = new ExpressionDimensionValuesProperty {
Key = "key",
MatchOptions = new [] { "matchOptions" },
Values = new [] { "values" }
};
Synopsis
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. |
Properties
Key
The name of the dimension that you want to filter on.
string? Key { get; }
Property Value
Remarks
MatchOptions
The match options that you can use to filter your results.
string[]? MatchOptions { get; }
Property Value
string[]
Remarks
You can specify only one of these values in the array.
Values
The metadata values you can specify to filter upon, so that the results all match at least one of the specified values.
string[]? Values { get; }
Property Value
string[]