aws-sdk-billing 1.50.0

AWS SDK for AWS Billing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateBillingView`](crate::operation::update_billing_view::builders::UpdateBillingViewFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`arn(impl Into<String>)`](crate::operation::update_billing_view::builders::UpdateBillingViewFluentBuilder::arn) / [`set_arn(Option<String>)`](crate::operation::update_billing_view::builders::UpdateBillingViewFluentBuilder::set_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view.</p><br>
    ///   - [`name(impl Into<String>)`](crate::operation::update_billing_view::builders::UpdateBillingViewFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_billing_view::builders::UpdateBillingViewFluentBuilder::set_name):<br>required: **false**<br><p>The name of the billing view.</p><br>
    ///   - [`description(impl Into<String>)`](crate::operation::update_billing_view::builders::UpdateBillingViewFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_billing_view::builders::UpdateBillingViewFluentBuilder::set_description):<br>required: **false**<br><p>The description of the billing view.</p><br>
    ///   - [`data_filter_expression(Expression)`](crate::operation::update_billing_view::builders::UpdateBillingViewFluentBuilder::data_filter_expression) / [`set_data_filter_expression(Option<Expression>)`](crate::operation::update_billing_view::builders::UpdateBillingViewFluentBuilder::set_data_filter_expression):<br>required: **false**<br><p>See <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_billing_Expression.html">Expression</a>. Billing view only supports <code>LINKED_ACCOUNT</code>, <code>Tags</code>, and <code>CostCategories</code>.</p><br>
    /// - On success, responds with [`UpdateBillingViewOutput`](crate::operation::update_billing_view::UpdateBillingViewOutput) with field(s):
    ///   - [`arn(String)`](crate::operation::update_billing_view::UpdateBillingViewOutput::arn): <p>The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view.</p>
    ///   - [`updated_at(Option<DateTime>)`](crate::operation::update_billing_view::UpdateBillingViewOutput::updated_at): <p>The time when the billing view was last updated.</p>
    /// - On failure, responds with [`SdkError<UpdateBillingViewError>`](crate::operation::update_billing_view::UpdateBillingViewError)
    pub fn update_billing_view(&self) -> crate::operation::update_billing_view::builders::UpdateBillingViewFluentBuilder {
        crate::operation::update_billing_view::builders::UpdateBillingViewFluentBuilder::new(self.handle.clone())
    }
}