aws_sdk_medialive/client/
delete_multiplex_program.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 [`DeleteMultiplexProgram`](crate::operation::delete_multiplex_program::builders::DeleteMultiplexProgramFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`multiplex_id(impl Into<String>)`](crate::operation::delete_multiplex_program::builders::DeleteMultiplexProgramFluentBuilder::multiplex_id) / [`set_multiplex_id(Option<String>)`](crate::operation::delete_multiplex_program::builders::DeleteMultiplexProgramFluentBuilder::set_multiplex_id):<br>required: **true**<br>The ID of the multiplex that the program belongs to.<br>
7    ///   - [`program_name(impl Into<String>)`](crate::operation::delete_multiplex_program::builders::DeleteMultiplexProgramFluentBuilder::program_name) / [`set_program_name(Option<String>)`](crate::operation::delete_multiplex_program::builders::DeleteMultiplexProgramFluentBuilder::set_program_name):<br>required: **true**<br>The multiplex program name.<br>
8    /// - On success, responds with [`DeleteMultiplexProgramOutput`](crate::operation::delete_multiplex_program::DeleteMultiplexProgramOutput) with field(s):
9    ///   - [`channel_id(Option<String>)`](crate::operation::delete_multiplex_program::DeleteMultiplexProgramOutput::channel_id): The MediaLive channel associated with the program.
10    ///   - [`multiplex_program_settings(Option<MultiplexProgramSettings>)`](crate::operation::delete_multiplex_program::DeleteMultiplexProgramOutput::multiplex_program_settings): The settings for this multiplex program.
11    ///   - [`packet_identifiers_map(Option<MultiplexProgramPacketIdentifiersMap>)`](crate::operation::delete_multiplex_program::DeleteMultiplexProgramOutput::packet_identifiers_map): The packet identifier map for this multiplex program.
12    ///   - [`pipeline_details(Option<Vec::<MultiplexProgramPipelineDetail>>)`](crate::operation::delete_multiplex_program::DeleteMultiplexProgramOutput::pipeline_details): Contains information about the current sources for the specified program in the specified multiplex. Keep in mind that each multiplex pipeline connects to both pipelines in a given source channel (the channel identified by the program). But only one of those channel pipelines is ever active at one time.
13    ///   - [`program_name(Option<String>)`](crate::operation::delete_multiplex_program::DeleteMultiplexProgramOutput::program_name): The name of the multiplex program.
14    /// - On failure, responds with [`SdkError<DeleteMultiplexProgramError>`](crate::operation::delete_multiplex_program::DeleteMultiplexProgramError)
15    pub fn delete_multiplex_program(&self) -> crate::operation::delete_multiplex_program::builders::DeleteMultiplexProgramFluentBuilder {
16        crate::operation::delete_multiplex_program::builders::DeleteMultiplexProgramFluentBuilder::new(self.handle.clone())
17    }
18}