aws-sdk-medialive 0.26.0

AWS SDK for AWS Elemental MediaLive
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateMultiplexProgram`](crate::operation::update_multiplex_program::builders::UpdateMultiplexProgramFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`multiplex_id(impl Into<String>)`](crate::operation::update_multiplex_program::builders::UpdateMultiplexProgramFluentBuilder::multiplex_id) / [`set_multiplex_id(Option<String>)`](crate::operation::update_multiplex_program::builders::UpdateMultiplexProgramFluentBuilder::set_multiplex_id): The ID of the multiplex of the program to update.
    ///   - [`multiplex_program_settings(MultiplexProgramSettings)`](crate::operation::update_multiplex_program::builders::UpdateMultiplexProgramFluentBuilder::multiplex_program_settings) / [`set_multiplex_program_settings(Option<MultiplexProgramSettings>)`](crate::operation::update_multiplex_program::builders::UpdateMultiplexProgramFluentBuilder::set_multiplex_program_settings): The new settings for a multiplex program.
    ///   - [`program_name(impl Into<String>)`](crate::operation::update_multiplex_program::builders::UpdateMultiplexProgramFluentBuilder::program_name) / [`set_program_name(Option<String>)`](crate::operation::update_multiplex_program::builders::UpdateMultiplexProgramFluentBuilder::set_program_name): The name of the program to update.
    /// - On success, responds with [`UpdateMultiplexProgramOutput`](crate::operation::update_multiplex_program::UpdateMultiplexProgramOutput) with field(s):
    ///   - [`multiplex_program(Option<MultiplexProgram>)`](crate::operation::update_multiplex_program::UpdateMultiplexProgramOutput::multiplex_program): The updated multiplex program.
    /// - On failure, responds with [`SdkError<UpdateMultiplexProgramError>`](crate::operation::update_multiplex_program::UpdateMultiplexProgramError)
    pub fn update_multiplex_program(
        &self,
    ) -> crate::operation::update_multiplex_program::builders::UpdateMultiplexProgramFluentBuilder
    {
        crate::operation::update_multiplex_program::builders::UpdateMultiplexProgramFluentBuilder::new(self.handle.clone())
    }
}