public static interface GetCostAndUsageRequest.Builder extends CostExplorerRequest.Builder, SdkPojo, CopyableBuilder<GetCostAndUsageRequest.Builder,GetCostAndUsageRequest>
| Modifier and Type | Method and Description |
|---|---|
default GetCostAndUsageRequest.Builder |
filter(Consumer<Expression.Builder> filter)
Filters AWS costs by different dimensions.
|
GetCostAndUsageRequest.Builder |
filter(Expression filter)
Filters AWS costs by different dimensions.
|
GetCostAndUsageRequest.Builder |
granularity(Granularity granularity)
Sets the AWS cost granularity to
MONTHLY or DAILY. |
GetCostAndUsageRequest.Builder |
granularity(String granularity)
Sets the AWS cost granularity to
MONTHLY or DAILY. |
GetCostAndUsageRequest.Builder |
groupBy(Collection<GroupDefinition> groupBy)
You can group AWS costs using up to two different groups, either dimensions, tag keys, or both.
|
GetCostAndUsageRequest.Builder |
groupBy(Consumer<GroupDefinition.Builder>... groupBy)
You can group AWS costs using up to two different groups, either dimensions, tag keys, or both.
|
GetCostAndUsageRequest.Builder |
groupBy(GroupDefinition... groupBy)
You can group AWS costs using up to two different groups, either dimensions, tag keys, or both.
|
GetCostAndUsageRequest.Builder |
metrics(Collection<String> metrics)
Which metrics are returned in the query.
|
GetCostAndUsageRequest.Builder |
metrics(String... metrics)
Which metrics are returned in the query.
|
GetCostAndUsageRequest.Builder |
nextPageToken(String nextPageToken)
The token to retrieve the next set of results.
|
GetCostAndUsageRequest.Builder |
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
Add an optional request override configuration.
|
GetCostAndUsageRequest.Builder |
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
Add an optional request override configuration.
|
default GetCostAndUsageRequest.Builder |
timePeriod(Consumer<DateInterval.Builder> timePeriod)
Sets the start and end dates for retrieving AWS costs.
|
GetCostAndUsageRequest.Builder |
timePeriod(DateInterval timePeriod)
Sets the start and end dates for retrieving AWS costs.
|
buildoverrideConfigurationcopyapplyMutation, buildGetCostAndUsageRequest.Builder timePeriod(DateInterval timePeriod)
Sets the start and end dates for retrieving AWS costs. The start date is inclusive, but the end date is
exclusive. For example, if start is 2017-01-01 and end is
2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and
including 2017-04-30 but not including 2017-05-01.
timePeriod - Sets the start and end dates for retrieving AWS costs. The start date is inclusive, but the end date
is exclusive. For example, if start is 2017-01-01 and end is
2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to
and including 2017-04-30 but not including 2017-05-01.default GetCostAndUsageRequest.Builder timePeriod(Consumer<DateInterval.Builder> timePeriod)
Sets the start and end dates for retrieving AWS costs. The start date is inclusive, but the end date is
exclusive. For example, if start is 2017-01-01 and end is
2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and
including 2017-04-30 but not including 2017-05-01.
DateInterval.Builder avoiding the need to
create one manually via DateInterval.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to timePeriod(DateInterval).timePeriod - a consumer that will call methods on DateInterval.BuildertimePeriod(DateInterval)GetCostAndUsageRequest.Builder granularity(String granularity)
Sets the AWS cost granularity to MONTHLY or DAILY. If Granularity
isn't set, the response object doesn't include the Granularity, either MONTHLY or
DAILY.
granularity - Sets the AWS cost granularity to MONTHLY or DAILY. If
Granularity isn't set, the response object doesn't include the Granularity,
either MONTHLY or DAILY.Granularity,
GranularityGetCostAndUsageRequest.Builder granularity(Granularity granularity)
Sets the AWS cost granularity to MONTHLY or DAILY. If Granularity
isn't set, the response object doesn't include the Granularity, either MONTHLY or
DAILY.
granularity - Sets the AWS cost granularity to MONTHLY or DAILY. If
Granularity isn't set, the response object doesn't include the Granularity,
either MONTHLY or DAILY.Granularity,
GranularityGetCostAndUsageRequest.Builder filter(Expression filter)
Filters AWS costs by different dimensions. For example, you can specify SERVICE and
LINKED_ACCOUNT and get the costs that are associated with that account's usage of that service.
You can nest Expression objects to define any combination of dimension filters. For more
information, see Expression.
filter - Filters AWS costs by different dimensions. For example, you can specify SERVICE and
LINKED_ACCOUNT and get the costs that are associated with that account's usage of that
service. You can nest Expression objects to define any combination of dimension filters.
For more information, see Expression.default GetCostAndUsageRequest.Builder filter(Consumer<Expression.Builder> filter)
Filters AWS costs by different dimensions. For example, you can specify SERVICE and
LINKED_ACCOUNT and get the costs that are associated with that account's usage of that service.
You can nest Expression objects to define any combination of dimension filters. For more
information, see Expression.
Expression.Builder avoiding the need to create
one manually via Expression.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its result
is passed to filter(Expression).filter - a consumer that will call methods on Expression.Builderfilter(Expression)GetCostAndUsageRequest.Builder metrics(Collection<String> metrics)
Which metrics are returned in the query. For more information about blended and unblended rates, see Why does the "blended" annotation appear on some line items in my bill?.
Valid values are AmortizedCost, BlendedCost, NetAmortizedCost,
NetUnblendedCost, NormalizedUsageAmount, UnblendedCost, and
UsageQuantity.
If you return the UsageQuantity metric, the service aggregates all usage numbers without taking
into account the units. For example, if you aggregate usageQuantity across all of EC2, the
results aren't meaningful because EC2 compute hours and data transfer are measured in different units (for
example, hours vs. GB). To get more meaningful UsageQuantity metrics, filter by
UsageType or UsageTypeGroups.
Metrics is required for GetCostAndUsage requests.
metrics - Which metrics are returned in the query. For more information about blended and unblended rates, see
Why does the
"blended" annotation appear on some line items in my bill?.
Valid values are AmortizedCost, BlendedCost, NetAmortizedCost,
NetUnblendedCost, NormalizedUsageAmount, UnblendedCost, and
UsageQuantity.
If you return the UsageQuantity metric, the service aggregates all usage numbers without
taking into account the units. For example, if you aggregate usageQuantity across all of
EC2, the results aren't meaningful because EC2 compute hours and data transfer are measured in
different units (for example, hours vs. GB). To get more meaningful UsageQuantity
metrics, filter by UsageType or UsageTypeGroups.
Metrics is required for GetCostAndUsage requests.
GetCostAndUsageRequest.Builder metrics(String... metrics)
Which metrics are returned in the query. For more information about blended and unblended rates, see Why does the "blended" annotation appear on some line items in my bill?.
Valid values are AmortizedCost, BlendedCost, NetAmortizedCost,
NetUnblendedCost, NormalizedUsageAmount, UnblendedCost, and
UsageQuantity.
If you return the UsageQuantity metric, the service aggregates all usage numbers without taking
into account the units. For example, if you aggregate usageQuantity across all of EC2, the
results aren't meaningful because EC2 compute hours and data transfer are measured in different units (for
example, hours vs. GB). To get more meaningful UsageQuantity metrics, filter by
UsageType or UsageTypeGroups.
Metrics is required for GetCostAndUsage requests.
metrics - Which metrics are returned in the query. For more information about blended and unblended rates, see
Why does the
"blended" annotation appear on some line items in my bill?.
Valid values are AmortizedCost, BlendedCost, NetAmortizedCost,
NetUnblendedCost, NormalizedUsageAmount, UnblendedCost, and
UsageQuantity.
If you return the UsageQuantity metric, the service aggregates all usage numbers without
taking into account the units. For example, if you aggregate usageQuantity across all of
EC2, the results aren't meaningful because EC2 compute hours and data transfer are measured in
different units (for example, hours vs. GB). To get more meaningful UsageQuantity
metrics, filter by UsageType or UsageTypeGroups.
Metrics is required for GetCostAndUsage requests.
GetCostAndUsageRequest.Builder groupBy(Collection<GroupDefinition> groupBy)
You can group AWS costs using up to two different groups, either dimensions, tag keys, or both.
When you group by tag key, you get all tag values, including empty strings.
Valid values are AZ, INSTANCE_TYPE, LEGAL_ENTITY_NAME,
LINKED_ACCOUNT, OPERATION, PLATFORM, PURCHASE_TYPE,
SERVICE, TAGS, TENANCY, and USAGE_TYPE.
groupBy - You can group AWS costs using up to two different groups, either dimensions, tag keys, or both.
When you group by tag key, you get all tag values, including empty strings.
Valid values are AZ, INSTANCE_TYPE, LEGAL_ENTITY_NAME,
LINKED_ACCOUNT, OPERATION, PLATFORM, PURCHASE_TYPE, SERVICE, TAGS, TENANCY, and USAGE_TYPE.
GetCostAndUsageRequest.Builder groupBy(GroupDefinition... groupBy)
You can group AWS costs using up to two different groups, either dimensions, tag keys, or both.
When you group by tag key, you get all tag values, including empty strings.
Valid values are AZ, INSTANCE_TYPE, LEGAL_ENTITY_NAME,
LINKED_ACCOUNT, OPERATION, PLATFORM, PURCHASE_TYPE,
SERVICE, TAGS, TENANCY, and USAGE_TYPE.
groupBy - You can group AWS costs using up to two different groups, either dimensions, tag keys, or both.
When you group by tag key, you get all tag values, including empty strings.
Valid values are AZ, INSTANCE_TYPE, LEGAL_ENTITY_NAME,
LINKED_ACCOUNT, OPERATION, PLATFORM, PURCHASE_TYPE, SERVICE, TAGS, TENANCY, and USAGE_TYPE.
GetCostAndUsageRequest.Builder groupBy(Consumer<GroupDefinition.Builder>... groupBy)
You can group AWS costs using up to two different groups, either dimensions, tag keys, or both.
When you group by tag key, you get all tag values, including empty strings.
Valid values are AZ, INSTANCE_TYPE, LEGAL_ENTITY_NAME,
LINKED_ACCOUNT, OPERATION, PLATFORM, PURCHASE_TYPE,
SERVICE, TAGS, TENANCY, and USAGE_TYPE.
List.Builder avoiding the need
to create one manually via List#builder() .
When the Consumer completes, List.Builder#build() is called immediately and
its result is passed to #groupBy(List) .groupBy - a consumer that will call methods on List.Builder #groupBy(List) GetCostAndUsageRequest.Builder nextPageToken(String nextPageToken)
The token to retrieve the next set of results. AWS provides the token when the response from a previous call has more results than the maximum page size.
nextPageToken - The token to retrieve the next set of results. AWS provides the token when the response from a
previous call has more results than the maximum page size.GetCostAndUsageRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
AwsRequest.BuilderoverrideConfiguration in interface AwsRequest.BuilderoverrideConfiguration - The override configuration.GetCostAndUsageRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
AwsRequest.BuilderoverrideConfiguration in interface AwsRequest.BuilderbuilderConsumer - A Consumer to which an empty AwsRequestOverrideConfiguration.Builder will be
given.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.