1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StartIngestion`](crate::operation::start_ingestion::builders::StartIngestionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`ingestion_identifier(impl Into<String>)`](crate::operation::start_ingestion::builders::StartIngestionFluentBuilder::ingestion_identifier) / [`set_ingestion_identifier(Option<String>)`](crate::operation::start_ingestion::builders::StartIngestionFluentBuilder::set_ingestion_identifier):<br>required: **true**<br><p>The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion to use for the request.</p><br>
    ///   - [`app_bundle_identifier(impl Into<String>)`](crate::operation::start_ingestion::builders::StartIngestionFluentBuilder::app_bundle_identifier) / [`set_app_bundle_identifier(Option<String>)`](crate::operation::start_ingestion::builders::StartIngestionFluentBuilder::set_app_bundle_identifier):<br>required: **true**<br><p>The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.</p><br>
    /// - On success, responds with [`StartIngestionOutput`](crate::operation::start_ingestion::StartIngestionOutput)
    /// - On failure, responds with [`SdkError<StartIngestionError>`](crate::operation::start_ingestion::StartIngestionError)
    pub fn start_ingestion(&self) -> crate::operation::start_ingestion::builders::StartIngestionFluentBuilder {
        crate::operation::start_ingestion::builders::StartIngestionFluentBuilder::new(self.handle.clone())
    }
}