1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
// 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:
/// - [`id(impl Into<String>)`](crate::operation::describe_channel::builders::DescribeChannelFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::describe_channel::builders::DescribeChannelFluentBuilder::set_id): The ID of a Channel.
/// - On success, responds with [`DescribeChannelOutput`](crate::operation::describe_channel::DescribeChannelOutput) with field(s):
/// - [`arn(Option<String>)`](crate::operation::describe_channel::DescribeChannelOutput::arn): The Amazon Resource Name (ARN) assigned to the Channel.
/// - [`description(Option<String>)`](crate::operation::describe_channel::DescribeChannelOutput::description): A short text description of the Channel.
/// - [`egress_access_logs(Option<EgressAccessLogs>)`](crate::operation::describe_channel::DescribeChannelOutput::egress_access_logs): Configure egress access logging.
/// - [`hls_ingest(Option<HlsIngest>)`](crate::operation::describe_channel::DescribeChannelOutput::hls_ingest): An HTTP Live Streaming (HLS) ingest resource configuration.
/// - [`id(Option<String>)`](crate::operation::describe_channel::DescribeChannelOutput::id): The ID of the Channel.
/// - [`ingress_access_logs(Option<IngressAccessLogs>)`](crate::operation::describe_channel::DescribeChannelOutput::ingress_access_logs): Configure ingress access logging.
/// - [`tags(Option<HashMap<String, String>>)`](crate::operation::describe_channel::DescribeChannelOutput::tags): A collection of tags associated with a resource
/// - 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(),
)
}
}