aws_sdk_bcmdataexports/client/
delete_export.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 [`DeleteExport`](crate::operation::delete_export::builders::DeleteExportFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`export_arn(impl Into<String>)`](crate::operation::delete_export::builders::DeleteExportFluentBuilder::export_arn) / [`set_export_arn(Option<String>)`](crate::operation::delete_export::builders::DeleteExportFluentBuilder::set_export_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) for this export.</p><br>
7    /// - On success, responds with [`DeleteExportOutput`](crate::operation::delete_export::DeleteExportOutput) with field(s):
8    ///   - [`export_arn(Option<String>)`](crate::operation::delete_export::DeleteExportOutput::export_arn): <p>The Amazon Resource Name (ARN) for this export.</p>
9    /// - On failure, responds with [`SdkError<DeleteExportError>`](crate::operation::delete_export::DeleteExportError)
10    pub fn delete_export(&self) -> crate::operation::delete_export::builders::DeleteExportFluentBuilder {
11        crate::operation::delete_export::builders::DeleteExportFluentBuilder::new(self.handle.clone())
12    }
13}