[][src]Struct rusoto_budgets::Budget

pub struct Budget {
    pub budget_limit: Option<Spend>,
    pub budget_name: String,
    pub budget_type: String,
    pub calculated_spend: Option<CalculatedSpend>,
    pub cost_filters: Option<HashMap<String, Vec<String>>>,
    pub cost_types: Option<CostTypes>,
    pub last_updated_time: Option<f64>,
    pub time_period: Option<TimePeriod>,
    pub time_unit: String,
}

Represents the output of the CreateBudget operation. The content consists of the detailed metadata and data file information, and the current status of the budget object.

This is the ARN pattern for a budget:

arn:aws:budgetservice::AccountId:budget/budgetName

Fields

budget_limit: Option<Spend>

The total amount of cost, usage, RI utilization, or RI coverage that you want to track with your budget.

BudgetLimit is required for cost or usage budgets, but optional for RI utilization or coverage budgets. RI utilization or coverage budgets default to 100, which is the only valid value for RI utilization or coverage budgets.

budget_name: String

The name of a budget. The name must be unique within accounts. The : and \ characters aren't allowed in BudgetName.

budget_type: String

Whether this budget tracks monetary costs, usage, RI utilization, or RI coverage.

calculated_spend: Option<CalculatedSpend>

The actual and forecasted cost or usage that the budget tracks.

cost_filters: Option<HashMap<String, Vec<String>>>

The cost filters, such as service or region, that are applied to a budget.

AWS Budgets supports the following services as a filter for RI budgets:

  • Amazon Elastic Compute Cloud - Compute

  • Amazon Redshift

  • Amazon Relational Database Service

  • Amazon ElastiCache

  • Amazon Elasticsearch Service

cost_types: Option<CostTypes>

The types of costs that are included in this COST budget.

USAGE, RI_UTILIZATION, and RI_COVERAGE budgets do not have CostTypes.

last_updated_time: Option<f64>

The last time that you updated this budget.

time_period: Option<TimePeriod>

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. The end date must come before 06/15/87 00:00 UTC.

If you create your budget and don't specify a start date, AWS defaults to the start of your chosen time period (DAILY, MONTHLY, QUARTERLY, or ANNUALLY). For example, if you created your budget on January 24, 2018, chose DAILY, and didn't set a start date, AWS set your start date to 01/24/18 00:00 UTC. If you chose MONTHLY, AWS set your start date to 01/01/18 00:00 UTC. If you didn't specify an end date, AWS set your end date to 06/15/87 00:00 UTC. The defaults are the same for the AWS Billing and Cost Management console and the API.

You can change either date with the UpdateBudget operation.

After the end date, AWS deletes the budget and all associated notifications and subscribers.

time_unit: String

The length of time until a budget resets the actual and forecasted spend. DAILY is available only for RI_UTILIZATION and RI_COVERAGE budgets.

Trait Implementations

impl Clone for Budget[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<Budget> for Budget[src]

impl Default for Budget[src]

impl Debug for Budget[src]

impl<'de> Deserialize<'de> for Budget[src]

impl Serialize for Budget[src]

Auto Trait Implementations

impl Send for Budget

impl Sync for Budget

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self