Interface CfnBudget.IExpressionProperty
Use Expression to filter in various Budgets APIs.
Namespace: Amazon.CDK.AWS.Budgets
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnBudget.IExpressionProperty
Syntax (vb)
Public Interface CfnBudget.IExpressionProperty
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;
ExpressionProperty expressionProperty_;
var expressionProperty = new ExpressionProperty {
And = new [] { expressionProperty_ },
CostCategories = new CostCategoryValuesProperty {
Key = "key",
MatchOptions = new [] { "matchOptions" },
Values = new [] { "values" }
},
Dimensions = new ExpressionDimensionValuesProperty {
Key = "key",
MatchOptions = new [] { "matchOptions" },
Values = new [] { "values" }
},
Not = expressionProperty_,
Or = new [] { expressionProperty_ },
Tags = new TagValuesProperty {
Key = "key",
MatchOptions = new [] { "matchOptions" },
Values = new [] { "values" }
}
};
Synopsis
Properties
And | Return results that match both Dimension objects. |
CostCategories | The filter that's based on CostCategoryValues. |
Dimensions | The specific Dimension to use for Expression. |
Not | Return results that don't match a Dimension object. |
Or | Return results that match either Dimension object. |
Tags | The specific Tag to use for Expression. |
Properties
And
Return results that match both Dimension objects.
object? And { get; }
Property Value
Remarks
CostCategories
The filter that's based on CostCategoryValues.
object? CostCategories { get; }
Property Value
Remarks
Dimensions
The specific Dimension to use for Expression.
object? Dimensions { get; }
Property Value
Remarks
Not
Return results that don't match a Dimension object.
object? Not { get; }
Property Value
Remarks
Or
Return results that match either Dimension object.
object? Or { get; }
Property Value
Remarks
Tags
The specific Tag to use for Expression.
CfnBudget.ITagValuesProperty? Tags { get; }