interface ExpressionDimensionValuesProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Budgets.CfnBudget.ExpressionDimensionValuesProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsbudgets#CfnBudget_ExpressionDimensionValuesProperty |
![]() | software.amazon.awscdk.services.budgets.CfnBudget.ExpressionDimensionValuesProperty |
![]() | aws_cdk.aws_budgets.CfnBudget.ExpressionDimensionValuesProperty |
![]() | aws-cdk-lib » aws_budgets » CfnBudget » ExpressionDimensionValuesProperty |
Contains the specifications for the filters to use for your request.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_budgets as budgets } from 'aws-cdk-lib';
const expressionDimensionValuesProperty: budgets.CfnBudget.ExpressionDimensionValuesProperty = {
key: 'key',
matchOptions: ['matchOptions'],
values: ['values'],
};
Properties
Name | Type | Description |
---|---|---|
key? | string | The name of the dimension that you want to filter on. |
match | string[] | The match options that you can use to filter your results. |
values? | string[] | The metadata values you can specify to filter upon, so that the results all match at least one of the specified values. |
key?
Type:
string
(optional)
The name of the dimension that you want to filter on.
matchOptions?
Type:
string[]
(optional)
The match options that you can use to filter your results.
You can specify only one of these values in the array.
values?
Type:
string[]
(optional)
The metadata values you can specify to filter upon, so that the results all match at least one of the specified values.