public static interface DateInterval.Builder extends CopyableBuilder<DateInterval.Builder,DateInterval>
Modifier and Type | Method and Description |
---|---|
DateInterval.Builder |
end(String end)
The end of the time period that you want the usage and costs for.
|
DateInterval.Builder |
start(String start)
The beginning of the time period that you want the usage and costs for.
|
copy
applyMutation, build
DateInterval.Builder start(String start)
The beginning of the time period that you want the usage and costs for. The start date is inclusive. For
example, if start
is 2017-01-01
, then the cost and usage data is retrieved starting
at 2017-01-01
up to the end date.
start
- The beginning of the time period that you want the usage and costs for. The start date is inclusive.
For example, if start
is 2017-01-01
, then the cost and usage data is
retrieved starting at 2017-01-01
up to the end date.DateInterval.Builder end(String end)
The end of the time period that you want the usage and costs for. The end date is exclusive. For example, if
the end
is 2017-05-01
, then the cost and usage data is retrieved from the start
date but not including 2017-05-01
.
end
- The end of the time period that you want the usage and costs for. The end date is exclusive. For
example, if the end
is 2017-05-01
, then the cost and usage data is retrieved
from the start date but not including 2017-05-01
.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.