[−][src]Struct rusoto_ce::GetCostAndUsageRequest
Fields
filter: Option<Expression>
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.
granularity: Option<String>
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
.
The GetCostAndUsageRequest
operation supports only DAILY
and MONTHLY
granularities.
group_by: Option<Vec<GroupDefinition>>
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
.
metrics: Option<Vec<String>>
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.
next_page_token: Option<String>
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.
time_period: DateInterval
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
.
Trait Implementations
impl PartialEq<GetCostAndUsageRequest> for GetCostAndUsageRequest
[src]
fn eq(&self, other: &GetCostAndUsageRequest) -> bool
[src]
fn ne(&self, other: &GetCostAndUsageRequest) -> bool
[src]
impl Default for GetCostAndUsageRequest
[src]
fn default() -> GetCostAndUsageRequest
[src]
impl Clone for GetCostAndUsageRequest
[src]
fn clone(&self) -> GetCostAndUsageRequest
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for GetCostAndUsageRequest
[src]
impl Serialize for GetCostAndUsageRequest
[src]
Auto Trait Implementations
impl Send for GetCostAndUsageRequest
impl Sync for GetCostAndUsageRequest
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self