Interface CfnBudget.TimePeriodProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBudget.TimePeriodProperty.Jsii$Proxy
Enclosing class:
CfnBudget

@Stability(Stable) public static interface CfnBudget.TimePeriodProperty extends software.amazon.jsii.JsiiSerializable
The period of time that is covered by a budget.

The period has a start date and an end date. The start date must come before the end date. There are no restrictions on the end date.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.budgets.*;
 TimePeriodProperty timePeriodProperty = TimePeriodProperty.builder()
         .end("end")
         .start("start")
         .build();
 

See Also: