aws_sdk_billing/client/update_billing_view.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`UpdateBillingView`](crate::operation::update_billing_view::builders::UpdateBillingViewFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - [`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>
9 /// - [`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> and <code>Tags</code>.</p><br>
10 /// - On success, responds with [`UpdateBillingViewOutput`](crate::operation::update_billing_view::UpdateBillingViewOutput) with field(s):
11 /// - [`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>
12 /// - [`updated_at(Option<DateTime>)`](crate::operation::update_billing_view::UpdateBillingViewOutput::updated_at): <p>The time when the billing view was last updated.</p>
13 /// - On failure, responds with [`SdkError<UpdateBillingViewError>`](crate::operation::update_billing_view::UpdateBillingViewError)
14 pub fn update_billing_view(&self) -> crate::operation::update_billing_view::builders::UpdateBillingViewFluentBuilder {
15 crate::operation::update_billing_view::builders::UpdateBillingViewFluentBuilder::new(self.handle.clone())
16 }
17}