interface SavingsPlansUtilizationQueryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BCM.CfnDashboardPropsMixin.SavingsPlansUtilizationQueryProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbcm#CfnDashboardPropsMixin_SavingsPlansUtilizationQueryProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bcm.CfnDashboardPropsMixin.SavingsPlansUtilizationQueryProperty |
Python | aws_cdk.cfn_property_mixins.aws_bcm.CfnDashboardPropsMixin.SavingsPlansUtilizationQueryProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bcm » CfnDashboardPropsMixin » SavingsPlansUtilizationQueryProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bcm as bcm } from '@aws-cdk/cfn-property-mixins';
declare const expressionProperty_: bcm.CfnDashboardPropsMixin.ExpressionProperty;
const savingsPlansUtilizationQueryProperty: bcm.CfnDashboardPropsMixin.SavingsPlansUtilizationQueryProperty = {
filter: {
and: [expressionProperty_],
costCategories: {
key: 'key',
matchOptions: ['matchOptions'],
values: ['values'],
},
dimensions: {
key: 'key',
matchOptions: ['matchOptions'],
values: ['values'],
},
not: expressionProperty_,
tags: {
key: 'key',
matchOptions: ['matchOptions'],
values: ['values'],
},
},
granularity: 'granularity',
timeRange: {
endTime: {
type: 'type',
value: 'value',
},
startTime: {
type: 'type',
value: 'value',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| filter? | IResolvable | Expression | |
| granularity? | string | |
| time | IResolvable | Date |
filter?
Type:
IResolvable | Expression
(optional)
granularity?
Type:
string
(optional)
timeRange?
Type:
IResolvable | Date
(optional)

.NET
Go
Java
Python
TypeScript