aws-sdk-medialive 1.46.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 [`DescribeMultiplexProgram`](crate::operation::describe_multiplex_program::builders::DescribeMultiplexProgramFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`multiplex_id(impl Into<String>)`](crate::operation::describe_multiplex_program::builders::DescribeMultiplexProgramFluentBuilder::multiplex_id) / [`set_multiplex_id(Option<String>)`](crate::operation::describe_multiplex_program::builders::DescribeMultiplexProgramFluentBuilder::set_multiplex_id):<br>required: **true**<br>The ID of the multiplex that the program belongs to.<br>
    ///   - [`program_name(impl Into<String>)`](crate::operation::describe_multiplex_program::builders::DescribeMultiplexProgramFluentBuilder::program_name) / [`set_program_name(Option<String>)`](crate::operation::describe_multiplex_program::builders::DescribeMultiplexProgramFluentBuilder::set_program_name):<br>required: **true**<br>The name of the program.<br>
    /// - On success, responds with [`DescribeMultiplexProgramOutput`](crate::operation::describe_multiplex_program::DescribeMultiplexProgramOutput) with field(s):
    ///   - [`channel_id(Option<String>)`](crate::operation::describe_multiplex_program::DescribeMultiplexProgramOutput::channel_id): The MediaLive channel associated with the program.
    ///   - [`multiplex_program_settings(Option<MultiplexProgramSettings>)`](crate::operation::describe_multiplex_program::DescribeMultiplexProgramOutput::multiplex_program_settings): The settings for this multiplex program.
    ///   - [`packet_identifiers_map(Option<MultiplexProgramPacketIdentifiersMap>)`](crate::operation::describe_multiplex_program::DescribeMultiplexProgramOutput::packet_identifiers_map): The packet identifier map for this multiplex program.
    ///   - [`pipeline_details(Option<Vec::<MultiplexProgramPipelineDetail>>)`](crate::operation::describe_multiplex_program::DescribeMultiplexProgramOutput::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.
    ///   - [`program_name(Option<String>)`](crate::operation::describe_multiplex_program::DescribeMultiplexProgramOutput::program_name): The name of the multiplex program.
    /// - On failure, responds with [`SdkError<DescribeMultiplexProgramError>`](crate::operation::describe_multiplex_program::DescribeMultiplexProgramError)
    pub fn describe_multiplex_program(&self) -> crate::operation::describe_multiplex_program::builders::DescribeMultiplexProgramFluentBuilder {
        crate::operation::describe_multiplex_program::builders::DescribeMultiplexProgramFluentBuilder::new(self.handle.clone())
    }
}