aws_sdk_iotanalytics/operation/describe_channel/
_describe_channel_output.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2#[allow(missing_docs)] // documentation missing in model
3#[non_exhaustive]
4#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
5pub struct DescribeChannelOutput {
6    /// <p>An object that contains information about the channel.</p>
7    pub channel: ::std::option::Option<crate::types::Channel>,
8    /// <p>Statistics about the channel. Included if the <code>includeStatistics</code> parameter is set to <code>true</code> in the request.</p>
9    pub statistics: ::std::option::Option<crate::types::ChannelStatistics>,
10    _request_id: Option<String>,
11}
12impl DescribeChannelOutput {
13    /// <p>An object that contains information about the channel.</p>
14    pub fn channel(&self) -> ::std::option::Option<&crate::types::Channel> {
15        self.channel.as_ref()
16    }
17    /// <p>Statistics about the channel. Included if the <code>includeStatistics</code> parameter is set to <code>true</code> in the request.</p>
18    pub fn statistics(&self) -> ::std::option::Option<&crate::types::ChannelStatistics> {
19        self.statistics.as_ref()
20    }
21}
22impl ::aws_types::request_id::RequestId for DescribeChannelOutput {
23    fn request_id(&self) -> Option<&str> {
24        self._request_id.as_deref()
25    }
26}
27impl DescribeChannelOutput {
28    /// Creates a new builder-style object to manufacture [`DescribeChannelOutput`](crate::operation::describe_channel::DescribeChannelOutput).
29    pub fn builder() -> crate::operation::describe_channel::builders::DescribeChannelOutputBuilder {
30        crate::operation::describe_channel::builders::DescribeChannelOutputBuilder::default()
31    }
32}
33
34/// A builder for [`DescribeChannelOutput`](crate::operation::describe_channel::DescribeChannelOutput).
35#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
36#[non_exhaustive]
37pub struct DescribeChannelOutputBuilder {
38    pub(crate) channel: ::std::option::Option<crate::types::Channel>,
39    pub(crate) statistics: ::std::option::Option<crate::types::ChannelStatistics>,
40    _request_id: Option<String>,
41}
42impl DescribeChannelOutputBuilder {
43    /// <p>An object that contains information about the channel.</p>
44    pub fn channel(mut self, input: crate::types::Channel) -> Self {
45        self.channel = ::std::option::Option::Some(input);
46        self
47    }
48    /// <p>An object that contains information about the channel.</p>
49    pub fn set_channel(mut self, input: ::std::option::Option<crate::types::Channel>) -> Self {
50        self.channel = input;
51        self
52    }
53    /// <p>An object that contains information about the channel.</p>
54    pub fn get_channel(&self) -> &::std::option::Option<crate::types::Channel> {
55        &self.channel
56    }
57    /// <p>Statistics about the channel. Included if the <code>includeStatistics</code> parameter is set to <code>true</code> in the request.</p>
58    pub fn statistics(mut self, input: crate::types::ChannelStatistics) -> Self {
59        self.statistics = ::std::option::Option::Some(input);
60        self
61    }
62    /// <p>Statistics about the channel. Included if the <code>includeStatistics</code> parameter is set to <code>true</code> in the request.</p>
63    pub fn set_statistics(mut self, input: ::std::option::Option<crate::types::ChannelStatistics>) -> Self {
64        self.statistics = input;
65        self
66    }
67    /// <p>Statistics about the channel. Included if the <code>includeStatistics</code> parameter is set to <code>true</code> in the request.</p>
68    pub fn get_statistics(&self) -> &::std::option::Option<crate::types::ChannelStatistics> {
69        &self.statistics
70    }
71    pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
72        self._request_id = Some(request_id.into());
73        self
74    }
75
76    pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
77        self._request_id = request_id;
78        self
79    }
80    /// Consumes the builder and constructs a [`DescribeChannelOutput`](crate::operation::describe_channel::DescribeChannelOutput).
81    pub fn build(self) -> crate::operation::describe_channel::DescribeChannelOutput {
82        crate::operation::describe_channel::DescribeChannelOutput {
83            channel: self.channel,
84            statistics: self.statistics,
85            _request_id: self._request_id,
86        }
87    }
88}