aws_sdk_appfabric/client/get_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 [`GetIngestion`](crate::operation::get_ingestion::builders::GetIngestionFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - On success, responds with [`GetIngestionOutput`](crate::operation::get_ingestion::GetIngestionOutput) with field(s):
9 /// - [`ingestion(Option<Ingestion>)`](crate::operation::get_ingestion::GetIngestionOutput::ingestion): <p>Contains information about an ingestion.</p>
10 /// - On failure, responds with [`SdkError<GetIngestionError>`](crate::operation::get_ingestion::GetIngestionError)
11 pub fn get_ingestion(&self) -> crate::operation::get_ingestion::builders::GetIngestionFluentBuilder {
12 crate::operation::get_ingestion::builders::GetIngestionFluentBuilder::new(self.handle.clone())
13 }
14}