aws_sdk_mailmanager/client/stop_archive_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 [`StopArchiveExport`](crate::operation::stop_archive_export::builders::StopArchiveExportFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`export_id(impl Into<String>)`](crate::operation::stop_archive_export::builders::StopArchiveExportFluentBuilder::export_id) / [`set_export_id(Option<String>)`](crate::operation::stop_archive_export::builders::StopArchiveExportFluentBuilder::set_export_id):<br>required: **true**<br><p>The identifier of the export job to stop.</p><br>
7 /// - On success, responds with [`StopArchiveExportOutput`](crate::operation::stop_archive_export::StopArchiveExportOutput)
8 /// - On failure, responds with [`SdkError<StopArchiveExportError>`](crate::operation::stop_archive_export::StopArchiveExportError)
9 pub fn stop_archive_export(&self) -> crate::operation::stop_archive_export::builders::StopArchiveExportFluentBuilder {
10 crate::operation::stop_archive_export::builders::StopArchiveExportFluentBuilder::new(self.handle.clone())
11 }
12}