1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetIngestion`](crate::operation::get_ingestion::builders::GetIngestionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`app_bundle_identifier(impl Into<String>)`](crate::operation::get_ingestion::builders::GetIngestionFluentBuilder::app_bundle_identifier) / [`set_app_bundle_identifier(Option<String>)`](crate::operation::get_ingestion::builders::GetIngestionFluentBuilder::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>
    ///   - [`ingestion_identifier(impl Into<String>)`](crate::operation::get_ingestion::builders::GetIngestionFluentBuilder::ingestion_identifier) / [`set_ingestion_identifier(Option<String>)`](crate::operation::get_ingestion::builders::GetIngestionFluentBuilder::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>
    /// - On success, responds with [`GetIngestionOutput`](crate::operation::get_ingestion::GetIngestionOutput) with field(s):
    ///   - [`ingestion(Option<Ingestion>)`](crate::operation::get_ingestion::GetIngestionOutput::ingestion): <p>Contains information about an ingestion.</p>
    /// - On failure, responds with [`SdkError<GetIngestionError>`](crate::operation::get_ingestion::GetIngestionError)
    pub fn get_ingestion(&self) -> crate::operation::get_ingestion::builders::GetIngestionFluentBuilder {
        crate::operation::get_ingestion::builders::GetIngestionFluentBuilder::new(self.handle.clone())
    }
}