aws-sdk-medialive 1.83.0

AWS SDK for AWS Elemental MediaLive
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeChannelPlacementGroup`](crate::operation::describe_channel_placement_group::builders::DescribeChannelPlacementGroupFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`channel_placement_group_id(impl Into<String>)`](crate::operation::describe_channel_placement_group::builders::DescribeChannelPlacementGroupFluentBuilder::channel_placement_group_id) / [`set_channel_placement_group_id(Option<String>)`](crate::operation::describe_channel_placement_group::builders::DescribeChannelPlacementGroupFluentBuilder::set_channel_placement_group_id):<br>required: **true**<br>The ID of the channel placement group.<br>
    ///   - [`cluster_id(impl Into<String>)`](crate::operation::describe_channel_placement_group::builders::DescribeChannelPlacementGroupFluentBuilder::cluster_id) / [`set_cluster_id(Option<String>)`](crate::operation::describe_channel_placement_group::builders::DescribeChannelPlacementGroupFluentBuilder::set_cluster_id):<br>required: **true**<br>The ID of the cluster.<br>
    /// - On success, responds with [`DescribeChannelPlacementGroupOutput`](crate::operation::describe_channel_placement_group::DescribeChannelPlacementGroupOutput) with field(s):
    ///   - [`arn(Option<String>)`](crate::operation::describe_channel_placement_group::DescribeChannelPlacementGroupOutput::arn): The ARN of this ChannelPlacementGroup. It is automatically assigned when the ChannelPlacementGroup is created.
    ///   - [`channels(Option<Vec::<String>>)`](crate::operation::describe_channel_placement_group::DescribeChannelPlacementGroupOutput::channels): Used in ListChannelPlacementGroupsResult
    ///   - [`cluster_id(Option<String>)`](crate::operation::describe_channel_placement_group::DescribeChannelPlacementGroupOutput::cluster_id): The ID of the Cluster that the Node belongs to.
    ///   - [`id(Option<String>)`](crate::operation::describe_channel_placement_group::DescribeChannelPlacementGroupOutput::id): The ID of the ChannelPlacementGroup. Unique in the AWS account. The ID is the resource-id portion of the ARN.
    ///   - [`name(Option<String>)`](crate::operation::describe_channel_placement_group::DescribeChannelPlacementGroupOutput::name): The name that you specified for the ChannelPlacementGroup.
    ///   - [`nodes(Option<Vec::<String>>)`](crate::operation::describe_channel_placement_group::DescribeChannelPlacementGroupOutput::nodes): An array with one item, which is the single Node that is associated with the ChannelPlacementGroup.
    ///   - [`state(Option<ChannelPlacementGroupState>)`](crate::operation::describe_channel_placement_group::DescribeChannelPlacementGroupOutput::state): The current state of the ChannelPlacementGroup.
    /// - On failure, responds with [`SdkError<DescribeChannelPlacementGroupError>`](crate::operation::describe_channel_placement_group::DescribeChannelPlacementGroupError)
    pub fn describe_channel_placement_group(
        &self,
    ) -> crate::operation::describe_channel_placement_group::builders::DescribeChannelPlacementGroupFluentBuilder {
        crate::operation::describe_channel_placement_group::builders::DescribeChannelPlacementGroupFluentBuilder::new(self.handle.clone())
    }
}