aws_sdk_cloudtrail/client/stop_event_data_store_ingestion.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 [`StopEventDataStoreIngestion`](crate::operation::stop_event_data_store_ingestion::builders::StopEventDataStoreIngestionFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`event_data_store(impl Into<String>)`](crate::operation::stop_event_data_store_ingestion::builders::StopEventDataStoreIngestionFluentBuilder::event_data_store) / [`set_event_data_store(Option<String>)`](crate::operation::stop_event_data_store_ingestion::builders::StopEventDataStoreIngestionFluentBuilder::set_event_data_store):<br>required: **true**<br><p>The ARN (or ID suffix of the ARN) of the event data store for which you want to stop ingestion.</p><br>
7 /// - On success, responds with [`StopEventDataStoreIngestionOutput`](crate::operation::stop_event_data_store_ingestion::StopEventDataStoreIngestionOutput)
8 /// - On failure, responds with [`SdkError<StopEventDataStoreIngestionError>`](crate::operation::stop_event_data_store_ingestion::StopEventDataStoreIngestionError)
9 pub fn stop_event_data_store_ingestion(
10 &self,
11 ) -> crate::operation::stop_event_data_store_ingestion::builders::StopEventDataStoreIngestionFluentBuilder {
12 crate::operation::stop_event_data_store_ingestion::builders::StopEventDataStoreIngestionFluentBuilder::new(self.handle.clone())
13 }
14}