aws_sdk_appfabric/client/
start_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 [`StartIngestion`](crate::operation::start_ingestion::builders::StartIngestionFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>
7    ///   - [`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>
8    /// - On success, responds with [`StartIngestionOutput`](crate::operation::start_ingestion::StartIngestionOutput)
9    /// - On failure, responds with [`SdkError<StartIngestionError>`](crate::operation::start_ingestion::StartIngestionError)
10    pub fn start_ingestion(&self) -> crate::operation::start_ingestion::builders::StartIngestionFluentBuilder {
11        crate::operation::start_ingestion::builders::StartIngestionFluentBuilder::new(self.handle.clone())
12    }
13}