aws_sdk_medialive/client/delete_multiplex.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeleteMultiplex`](crate::operation::delete_multiplex::builders::DeleteMultiplexFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`multiplex_id(impl Into<String>)`](crate::operation::delete_multiplex::builders::DeleteMultiplexFluentBuilder::multiplex_id) / [`set_multiplex_id(Option<String>)`](crate::operation::delete_multiplex::builders::DeleteMultiplexFluentBuilder::set_multiplex_id):<br>required: **true**<br>The ID of the multiplex.<br>
/// - On success, responds with [`DeleteMultiplexOutput`](crate::operation::delete_multiplex::DeleteMultiplexOutput) with field(s):
/// - [`arn(Option<String>)`](crate::operation::delete_multiplex::DeleteMultiplexOutput::arn): The unique arn of the multiplex.
/// - [`availability_zones(Option<Vec::<String>>)`](crate::operation::delete_multiplex::DeleteMultiplexOutput::availability_zones): A list of availability zones for the multiplex.
/// - [`destinations(Option<Vec::<MultiplexOutputDestination>>)`](crate::operation::delete_multiplex::DeleteMultiplexOutput::destinations): A list of the multiplex output destinations.
/// - [`id(Option<String>)`](crate::operation::delete_multiplex::DeleteMultiplexOutput::id): The unique id of the multiplex.
/// - [`multiplex_settings(Option<MultiplexSettings>)`](crate::operation::delete_multiplex::DeleteMultiplexOutput::multiplex_settings): Configuration for a multiplex event.
/// - [`name(Option<String>)`](crate::operation::delete_multiplex::DeleteMultiplexOutput::name): The name of the multiplex.
/// - [`pipelines_running_count(Option<i32>)`](crate::operation::delete_multiplex::DeleteMultiplexOutput::pipelines_running_count): The number of currently healthy pipelines.
/// - [`program_count(Option<i32>)`](crate::operation::delete_multiplex::DeleteMultiplexOutput::program_count): The number of programs in the multiplex.
/// - [`state(Option<MultiplexState>)`](crate::operation::delete_multiplex::DeleteMultiplexOutput::state): The current state of the multiplex.
/// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::delete_multiplex::DeleteMultiplexOutput::tags): A collection of key-value pairs.
/// - On failure, responds with [`SdkError<DeleteMultiplexError>`](crate::operation::delete_multiplex::DeleteMultiplexError)
pub fn delete_multiplex(&self) -> crate::operation::delete_multiplex::builders::DeleteMultiplexFluentBuilder {
crate::operation::delete_multiplex::builders::DeleteMultiplexFluentBuilder::new(self.handle.clone())
}
}