aws_sdk_appfabric/client/delete_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 [`DeleteIngestion`](crate::operation::delete_ingestion::builders::DeleteIngestionFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`app_bundle_identifier(impl Into<String>)`](crate::operation::delete_ingestion::builders::DeleteIngestionFluentBuilder::app_bundle_identifier) / [`set_app_bundle_identifier(Option<String>)`](crate::operation::delete_ingestion::builders::DeleteIngestionFluentBuilder::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::delete_ingestion::builders::DeleteIngestionFluentBuilder::ingestion_identifier) / [`set_ingestion_identifier(Option<String>)`](crate::operation::delete_ingestion::builders::DeleteIngestionFluentBuilder::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 [`DeleteIngestionOutput`](crate::operation::delete_ingestion::DeleteIngestionOutput)
9 /// - On failure, responds with [`SdkError<DeleteIngestionError>`](crate::operation::delete_ingestion::DeleteIngestionError)
10 pub fn delete_ingestion(&self) -> crate::operation::delete_ingestion::builders::DeleteIngestionFluentBuilder {
11 crate::operation::delete_ingestion::builders::DeleteIngestionFluentBuilder::new(self.handle.clone())
12 }
13}