aws_sdk_cloudtrail/client/
start_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 [`StartEventDataStoreIngestion`](crate::operation::start_event_data_store_ingestion::builders::StartEventDataStoreIngestionFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`event_data_store(impl Into<String>)`](crate::operation::start_event_data_store_ingestion::builders::StartEventDataStoreIngestionFluentBuilder::event_data_store) / [`set_event_data_store(Option<String>)`](crate::operation::start_event_data_store_ingestion::builders::StartEventDataStoreIngestionFluentBuilder::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 start ingestion.</p><br>
7    /// - On success, responds with [`StartEventDataStoreIngestionOutput`](crate::operation::start_event_data_store_ingestion::StartEventDataStoreIngestionOutput)
8    /// - On failure, responds with [`SdkError<StartEventDataStoreIngestionError>`](crate::operation::start_event_data_store_ingestion::StartEventDataStoreIngestionError)
9    pub fn start_event_data_store_ingestion(
10        &self,
11    ) -> crate::operation::start_event_data_store_ingestion::builders::StartEventDataStoreIngestionFluentBuilder {
12        crate::operation::start_event_data_store_ingestion::builders::StartEventDataStoreIngestionFluentBuilder::new(self.handle.clone())
13    }
14}