// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeChannel`](crate::operation::describe_channel::builders::DescribeChannelFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`channel_arn(impl Into<String>)`](crate::operation::describe_channel::builders::DescribeChannelFluentBuilder::channel_arn) / [`set_channel_arn(Option<String>)`](crate::operation::describe_channel::builders::DescribeChannelFluentBuilder::set_channel_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) that uniquely identifies the channel.</p><br>
/// - [`cluster_arn(impl Into<String>)`](crate::operation::describe_channel::builders::DescribeChannelFluentBuilder::cluster_arn) / [`set_cluster_arn(Option<String>)`](crate::operation::describe_channel::builders::DescribeChannelFluentBuilder::set_cluster_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) that uniquely identifies the cluster.</p><br>
/// - On success, responds with [`DescribeChannelOutput`](crate::operation::describe_channel::DescribeChannelOutput) with field(s):
/// - [`channel_arn(Option<String>)`](crate::operation::describe_channel::DescribeChannelOutput::channel_arn): <p>The Amazon Resource Name (ARN) that uniquely identifies the channel.</p>
/// - [`channel_name(Option<String>)`](crate::operation::describe_channel::DescribeChannelOutput::channel_name): <p>The name of the channel.</p>
/// - [`encryption_configuration(Option<EncryptionConfiguration>)`](crate::operation::describe_channel::DescribeChannelOutput::encryption_configuration): <p>The encryption configuration applied to the channel.</p>
/// - [`iceberg_destination_configuration(Option<IcebergDestinationConfiguration>)`](crate::operation::describe_channel::DescribeChannelOutput::iceberg_destination_configuration): <p>The Apache Iceberg destination for the channel, if configured.</p>
/// - [`s3_destination_configuration(Option<S3DestinationConfiguration>)`](crate::operation::describe_channel::DescribeChannelOutput::s3_destination_configuration): <p>The Amazon S3 destination for the channel, if configured.</p>
/// - [`status(Option<ChannelStatus>)`](crate::operation::describe_channel::DescribeChannelOutput::status): <p>The current lifecycle state of the channel.</p>
/// - [`destination_type(Option<ChannelDestinationType>)`](crate::operation::describe_channel::DescribeChannelOutput::destination_type): <p>The type of destination configured for the channel.</p>
/// - [`creation_time(Option<DateTime>)`](crate::operation::describe_channel::DescribeChannelOutput::creation_time): <p>The time when the channel was created.</p>
/// - [`topic_configuration_list(Option<Vec::<TopicConfiguration>>)`](crate::operation::describe_channel::DescribeChannelOutput::topic_configuration_list): <p>The list of topic configurations for the channel.</p>
/// - [`logging_info(Option<ChannelLoggingInfo>)`](crate::operation::describe_channel::DescribeChannelOutput::logging_info): <p>The destinations to which the channel publishes operational logs.</p>
/// - [`state_info(Option<ChannelStateInfo>)`](crate::operation::describe_channel::DescribeChannelOutput::state_info): <p>Additional context for the current channel state, populated when the channel is in FAILED.</p>
/// - [`cluster_operation_arn(Option<String>)`](crate::operation::describe_channel::DescribeChannelOutput::cluster_operation_arn): <p>The Amazon Resource Name (ARN) of the in-flight cluster operation. Returned only while the channel is in CREATING, UPDATING, or DELETING.</p>
/// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::describe_channel::DescribeChannelOutput::tags): <p>The tags attached to the channel.</p>
/// - On failure, responds with [`SdkError<DescribeChannelError>`](crate::operation::describe_channel::DescribeChannelError)
pub fn describe_channel(&self) -> crate::operation::describe_channel::builders::DescribeChannelFluentBuilder {
crate::operation::describe_channel::builders::DescribeChannelFluentBuilder::new(self.handle.clone())
}
}