Interface CfnDashboardPropsMixin.ReservationUtilizationQueryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboardPropsMixin.ReservationUtilizationQueryProperty.Jsii$Proxy
- Enclosing class:
CfnDashboardPropsMixin
@Stability(Stable)
public static interface CfnDashboardPropsMixin.ReservationUtilizationQueryProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.bcm.*;
ExpressionProperty expressionProperty_;
ReservationUtilizationQueryProperty reservationUtilizationQueryProperty = ReservationUtilizationQueryProperty.builder()
.filter(ExpressionProperty.builder()
.and(List.of(expressionProperty_))
.costCategories(CostCategoryValuesProperty.builder()
.key("key")
.matchOptions(List.of("matchOptions"))
.values(List.of("values"))
.build())
.dimensions(DimensionValuesProperty.builder()
.key("key")
.matchOptions(List.of("matchOptions"))
.values(List.of("values"))
.build())
.not(expressionProperty_)
.tags(TagValuesProperty.builder()
.key("key")
.matchOptions(List.of("matchOptions"))
.values(List.of("values"))
.build())
.build())
.granularity("granularity")
.groupBy(List.of(GroupDefinitionProperty.builder()
.key("key")
.type("type")
.build()))
.timeRange(DateTimeRangeProperty.builder()
.endTime(DateTimeValueProperty.builder()
.type("type")
.value("value")
.build())
.startTime(DateTimeValueProperty.builder()
.type("type")
.value("value")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDashboardPropsMixin.ReservationUtilizationQueryProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnDashboardPropsMixin.ExpressionPropertydefault Stringdefault ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnDashboardPropsMixin.GroupDefinitionProperty>default ObjectReturns union: eitherIResolvableorCfnDashboardPropsMixin.DateTimeRangePropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFilter
Returns union: eitherIResolvableorCfnDashboardPropsMixin.ExpressionProperty- See Also:
-
getGranularity
- See Also:
-
getGroupBy
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnDashboardPropsMixin.GroupDefinitionProperty>- See Also:
-
getTimeRange
Returns union: eitherIResolvableorCfnDashboardPropsMixin.DateTimeRangeProperty- See Also:
-
builder
@Stability(Stable) static CfnDashboardPropsMixin.ReservationUtilizationQueryProperty.Builder builder()
-