software.amazon.awssdk.services.costexplorer.model.GetCostAndUsageRequest Maven / Gradle / Ivy
Show all versions of costexplorer Show documentation
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package software.amazon.awssdk.services.costexplorer.model;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.awscore.AwsRequestOverrideConfiguration;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.ListTrait;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructList;
import software.amazon.awssdk.core.util.SdkAutoConstructList;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*/
@Generated("software.amazon.awssdk:codegen")
public final class GetCostAndUsageRequest extends CostExplorerRequest implements
ToCopyableBuilder {
private static final SdkField TIME_PERIOD_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
.memberName("TimePeriod").getter(getter(GetCostAndUsageRequest::timePeriod)).setter(setter(Builder::timePeriod))
.constructor(DateInterval::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TimePeriod").build()).build();
private static final SdkField GRANULARITY_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("Granularity").getter(getter(GetCostAndUsageRequest::granularityAsString))
.setter(setter(Builder::granularity))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Granularity").build()).build();
private static final SdkField FILTER_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
.memberName("Filter").getter(getter(GetCostAndUsageRequest::filter)).setter(setter(Builder::filter))
.constructor(Expression::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Filter").build()).build();
private static final SdkField> METRICS_FIELD = SdkField
.> builder(MarshallingType.LIST)
.memberName("Metrics")
.getter(getter(GetCostAndUsageRequest::metrics))
.setter(setter(Builder::metrics))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Metrics").build(),
ListTrait
.builder()
.memberLocationName(null)
.memberFieldInfo(
SdkField. builder(MarshallingType.STRING)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
.locationName("member").build()).build()).build()).build();
private static final SdkField> GROUP_BY_FIELD = SdkField
.> builder(MarshallingType.LIST)
.memberName("GroupBy")
.getter(getter(GetCostAndUsageRequest::groupBy))
.setter(setter(Builder::groupBy))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("GroupBy").build(),
ListTrait
.builder()
.memberLocationName(null)
.memberFieldInfo(
SdkField. builder(MarshallingType.SDK_POJO)
.constructor(GroupDefinition::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
.locationName("member").build()).build()).build()).build();
private static final SdkField NEXT_PAGE_TOKEN_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("NextPageToken").getter(getter(GetCostAndUsageRequest::nextPageToken))
.setter(setter(Builder::nextPageToken))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("NextPageToken").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(TIME_PERIOD_FIELD,
GRANULARITY_FIELD, FILTER_FIELD, METRICS_FIELD, GROUP_BY_FIELD, NEXT_PAGE_TOKEN_FIELD));
private final DateInterval timePeriod;
private final String granularity;
private final Expression filter;
private final List metrics;
private final List groupBy;
private final String nextPageToken;
private GetCostAndUsageRequest(BuilderImpl builder) {
super(builder);
this.timePeriod = builder.timePeriod;
this.granularity = builder.granularity;
this.filter = builder.filter;
this.metrics = builder.metrics;
this.groupBy = builder.groupBy;
this.nextPageToken = builder.nextPageToken;
}
/**
*
* 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
.
*
*
* @return 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
.
*/
public final DateInterval timePeriod() {
return timePeriod;
}
/**
*
* Sets the AWS cost granularity to MONTHLY
or DAILY
, or HOURLY
. If
* Granularity
isn't set, the response object doesn't include the Granularity
, either
* MONTHLY
or DAILY
, or HOURLY
.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #granularity} will
* return {@link Granularity#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #granularityAsString}.
*
*
* @return Sets the AWS cost granularity to MONTHLY
or DAILY
, or HOURLY
. If
* Granularity
isn't set, the response object doesn't include the Granularity
,
* either MONTHLY
or DAILY
, or HOURLY
.
* @see Granularity
*/
public final Granularity granularity() {
return Granularity.fromValue(granularity);
}
/**
*
* Sets the AWS cost granularity to MONTHLY
or DAILY
, or HOURLY
. If
* Granularity
isn't set, the response object doesn't include the Granularity
, either
* MONTHLY
or DAILY
, or HOURLY
.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #granularity} will
* return {@link Granularity#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #granularityAsString}.
*
*
* @return Sets the AWS cost granularity to MONTHLY
or DAILY
, or HOURLY
. If
* Granularity
isn't set, the response object doesn't include the Granularity
,
* either MONTHLY
or DAILY
, or HOURLY
.
* @see Granularity
*/
public final String granularityAsString() {
return granularity;
}
/**
*
* 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.
*
*
* @return 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.
*/
public final Expression filter() {
return filter;
}
/**
* Returns true if the Metrics property was specified by the sender (it may be empty), or false if the sender did
* not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.
*/
public final boolean hasMetrics() {
return metrics != null && !(metrics instanceof SdkAutoConstructList);
}
/**
*
* 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 Amazon EC2, the results
* aren't meaningful because Amazon 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.
*
*
* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
*
*
* You can use {@link #hasMetrics()} to see if a value was sent in this field.
*
*
* @return 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
* Amazon EC2, the results aren't meaningful because Amazon 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.
*/
public final List metrics() {
return metrics;
}
/**
* Returns true if the GroupBy property was specified by the sender (it may be empty), or false if the sender did
* not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service.
*/
public final boolean hasGroupBy() {
return groupBy != null && !(groupBy instanceof SdkAutoConstructList);
}
/**
*
* You can group AWS costs using up to two different groups, either dimensions, tag keys, cost categories, or any
* two group by types.
*
*
* 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
, RECORD_TYPE
, and
* USAGE_TYPE
.
*
*
* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
*
*
* You can use {@link #hasGroupBy()} to see if a value was sent in this field.
*
*
* @return You can group AWS costs using up to two different groups, either dimensions, tag keys, cost categories,
* or any two group by types.
*
* 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
, RECORD_TYPE
, and
* USAGE_TYPE
.
*/
public final List groupBy() {
return groupBy;
}
/**
*
* 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.
*
*
* @return 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.
*/
public final String nextPageToken() {
return nextPageToken;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public final int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + super.hashCode();
hashCode = 31 * hashCode + Objects.hashCode(timePeriod());
hashCode = 31 * hashCode + Objects.hashCode(granularityAsString());
hashCode = 31 * hashCode + Objects.hashCode(filter());
hashCode = 31 * hashCode + Objects.hashCode(hasMetrics() ? metrics() : null);
hashCode = 31 * hashCode + Objects.hashCode(hasGroupBy() ? groupBy() : null);
hashCode = 31 * hashCode + Objects.hashCode(nextPageToken());
return hashCode;
}
@Override
public final boolean equals(Object obj) {
return super.equals(obj) && equalsBySdkFields(obj);
}
@Override
public final boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof GetCostAndUsageRequest)) {
return false;
}
GetCostAndUsageRequest other = (GetCostAndUsageRequest) obj;
return Objects.equals(timePeriod(), other.timePeriod())
&& Objects.equals(granularityAsString(), other.granularityAsString()) && Objects.equals(filter(), other.filter())
&& hasMetrics() == other.hasMetrics() && Objects.equals(metrics(), other.metrics())
&& hasGroupBy() == other.hasGroupBy() && Objects.equals(groupBy(), other.groupBy())
&& Objects.equals(nextPageToken(), other.nextPageToken());
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public final String toString() {
return ToString.builder("GetCostAndUsageRequest").add("TimePeriod", timePeriod())
.add("Granularity", granularityAsString()).add("Filter", filter())
.add("Metrics", hasMetrics() ? metrics() : null).add("GroupBy", hasGroupBy() ? groupBy() : null)
.add("NextPageToken", nextPageToken()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "TimePeriod":
return Optional.ofNullable(clazz.cast(timePeriod()));
case "Granularity":
return Optional.ofNullable(clazz.cast(granularityAsString()));
case "Filter":
return Optional.ofNullable(clazz.cast(filter()));
case "Metrics":
return Optional.ofNullable(clazz.cast(metrics()));
case "GroupBy":
return Optional.ofNullable(clazz.cast(groupBy()));
case "NextPageToken":
return Optional.ofNullable(clazz.cast(nextPageToken()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function
*
* 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
* Amazon EC2, the results aren't meaningful because Amazon 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.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder metrics(Collection 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 Amazon EC2,
* the results aren't meaningful because Amazon 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.
*
*
* @param 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
* Amazon EC2, the results aren't meaningful because Amazon 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.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder metrics(String... metrics);
/**
*
* You can group AWS costs using up to two different groups, either dimensions, tag keys, cost categories, or
* any two group by types.
*
*
* 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
, RECORD_TYPE
, and
* USAGE_TYPE
.
*
*
* @param groupBy
* You can group AWS costs using up to two different groups, either dimensions, tag keys, cost
* categories, or any two group by types.
*
* 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
, RECORD_TYPE
, and
* USAGE_TYPE
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder groupBy(Collection groupBy);
/**
*
* You can group AWS costs using up to two different groups, either dimensions, tag keys, cost categories, or
* any two group by types.
*
*
* 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
, RECORD_TYPE
, and
* USAGE_TYPE
.
*
*
* @param groupBy
* You can group AWS costs using up to two different groups, either dimensions, tag keys, cost
* categories, or any two group by types.
*
* 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
, RECORD_TYPE
, and
* USAGE_TYPE
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder groupBy(GroupDefinition... groupBy);
/**
*
* You can group AWS costs using up to two different groups, either dimensions, tag keys, cost categories, or
* any two group by types.
*
*
* 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
, RECORD_TYPE
, and
* USAGE_TYPE
.
*
* This is a convenience that creates an instance of the {@link List.Builder} avoiding the need
* to create one manually via {@link List#builder()}.
*
* When the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and
* its result is passed to {@link #groupBy(List)}.
*
* @param groupBy
* a consumer that will call methods on {@link List.Builder}
* @return Returns a reference to this object so that method calls can be chained together.
* @see #groupBy(List)
*/
Builder groupBy(Consumer... groupBy);
/**
*
* 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.
*
*
* @param 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.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder nextPageToken(String nextPageToken);
@Override
Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration);
@Override
Builder overrideConfiguration(Consumer builderConsumer);
}
static final class BuilderImpl extends CostExplorerRequest.BuilderImpl implements Builder {
private DateInterval timePeriod;
private String granularity;
private Expression filter;
private List metrics = DefaultSdkAutoConstructList.getInstance();
private List groupBy = DefaultSdkAutoConstructList.getInstance();
private String nextPageToken;
private BuilderImpl() {
}
private BuilderImpl(GetCostAndUsageRequest model) {
super(model);
timePeriod(model.timePeriod);
granularity(model.granularity);
filter(model.filter);
metrics(model.metrics);
groupBy(model.groupBy);
nextPageToken(model.nextPageToken);
}
public final DateInterval.Builder getTimePeriod() {
return timePeriod != null ? timePeriod.toBuilder() : null;
}
@Override
public final Builder timePeriod(DateInterval timePeriod) {
this.timePeriod = timePeriod;
return this;
}
public final void setTimePeriod(DateInterval.BuilderImpl timePeriod) {
this.timePeriod = timePeriod != null ? timePeriod.build() : null;
}
public final String getGranularity() {
return granularity;
}
@Override
public final Builder granularity(String granularity) {
this.granularity = granularity;
return this;
}
@Override
public final Builder granularity(Granularity granularity) {
this.granularity(granularity == null ? null : granularity.toString());
return this;
}
public final void setGranularity(String granularity) {
this.granularity = granularity;
}
public final Expression.Builder getFilter() {
return filter != null ? filter.toBuilder() : null;
}
@Override
public final Builder filter(Expression filter) {
this.filter = filter;
return this;
}
public final void setFilter(Expression.BuilderImpl filter) {
this.filter = filter != null ? filter.build() : null;
}
public final Collection getMetrics() {
if (metrics instanceof SdkAutoConstructList) {
return null;
}
return metrics;
}
@Override
public final Builder metrics(Collection metrics) {
this.metrics = MetricNamesCopier.copy(metrics);
return this;
}
@Override
@SafeVarargs
public final Builder metrics(String... metrics) {
metrics(Arrays.asList(metrics));
return this;
}
public final void setMetrics(Collection metrics) {
this.metrics = MetricNamesCopier.copy(metrics);
}
public final List getGroupBy() {
List result = GroupDefinitionsCopier.copyToBuilder(this.groupBy);
if (result instanceof SdkAutoConstructList) {
return null;
}
return result;
}
@Override
public final Builder groupBy(Collection groupBy) {
this.groupBy = GroupDefinitionsCopier.copy(groupBy);
return this;
}
@Override
@SafeVarargs
public final Builder groupBy(GroupDefinition... groupBy) {
groupBy(Arrays.asList(groupBy));
return this;
}
@Override
@SafeVarargs
public final Builder groupBy(Consumer... groupBy) {
groupBy(Stream.of(groupBy).map(c -> GroupDefinition.builder().applyMutation(c).build()).collect(Collectors.toList()));
return this;
}
public final void setGroupBy(Collection groupBy) {
this.groupBy = GroupDefinitionsCopier.copyFromBuilder(groupBy);
}
public final String getNextPageToken() {
return nextPageToken;
}
@Override
public final Builder nextPageToken(String nextPageToken) {
this.nextPageToken = nextPageToken;
return this;
}
public final void setNextPageToken(String nextPageToken) {
this.nextPageToken = nextPageToken;
}
@Override
public Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) {
super.overrideConfiguration(overrideConfiguration);
return this;
}
@Override
public Builder overrideConfiguration(Consumer builderConsumer) {
super.overrideConfiguration(builderConsumer);
return this;
}
@Override
public GetCostAndUsageRequest build() {
return new GetCostAndUsageRequest(this);
}
@Override
public List> sdkFields() {
return SDK_FIELDS;
}
}
}