aws_sdk_storagegateway/client/cancel_cache_report.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 [`CancelCacheReport`](crate::operation::cancel_cache_report::builders::CancelCacheReportFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`cache_report_arn(impl Into<String>)`](crate::operation::cancel_cache_report::builders::CancelCacheReportFluentBuilder::cache_report_arn) / [`set_cache_report_arn(Option<String>)`](crate::operation::cancel_cache_report::builders::CancelCacheReportFluentBuilder::set_cache_report_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the cache report you want to cancel.</p><br>
7 /// - On success, responds with [`CancelCacheReportOutput`](crate::operation::cancel_cache_report::CancelCacheReportOutput) with field(s):
8 /// - [`cache_report_arn(Option<String>)`](crate::operation::cancel_cache_report::CancelCacheReportOutput::cache_report_arn): <p>The Amazon Resource Name (ARN) of the cache report you want to cancel.</p>
9 /// - On failure, responds with [`SdkError<CancelCacheReportError>`](crate::operation::cancel_cache_report::CancelCacheReportError)
10 pub fn cancel_cache_report(&self) -> crate::operation::cancel_cache_report::builders::CancelCacheReportFluentBuilder {
11 crate::operation::cancel_cache_report::builders::CancelCacheReportFluentBuilder::new(self.handle.clone())
12 }
13}