aws_sdk_appfabric/client/get_ingestion_destination.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 [`GetIngestionDestination`](crate::operation::get_ingestion_destination::builders::GetIngestionDestinationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`app_bundle_identifier(impl Into<String>)`](crate::operation::get_ingestion_destination::builders::GetIngestionDestinationFluentBuilder::app_bundle_identifier) / [`set_app_bundle_identifier(Option<String>)`](crate::operation::get_ingestion_destination::builders::GetIngestionDestinationFluentBuilder::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_destination::builders::GetIngestionDestinationFluentBuilder::ingestion_identifier) / [`set_ingestion_identifier(Option<String>)`](crate::operation::get_ingestion_destination::builders::GetIngestionDestinationFluentBuilder::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 /// - [`ingestion_destination_identifier(impl Into<String>)`](crate::operation::get_ingestion_destination::builders::GetIngestionDestinationFluentBuilder::ingestion_destination_identifier) / [`set_ingestion_destination_identifier(Option<String>)`](crate::operation::get_ingestion_destination::builders::GetIngestionDestinationFluentBuilder::set_ingestion_destination_identifier):<br>required: **true**<br><p>The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion destination to use for the request.</p><br>
9 /// - On success, responds with [`GetIngestionDestinationOutput`](crate::operation::get_ingestion_destination::GetIngestionDestinationOutput) with field(s):
10 /// - [`ingestion_destination(Option<IngestionDestination>)`](crate::operation::get_ingestion_destination::GetIngestionDestinationOutput::ingestion_destination): <p>Contains information about an ingestion destination.</p>
11 /// - On failure, responds with [`SdkError<GetIngestionDestinationError>`](crate::operation::get_ingestion_destination::GetIngestionDestinationError)
12 pub fn get_ingestion_destination(&self) -> crate::operation::get_ingestion_destination::builders::GetIngestionDestinationFluentBuilder {
13 crate::operation::get_ingestion_destination::builders::GetIngestionDestinationFluentBuilder::new(self.handle.clone())
14 }
15}