aws_sdk_elasticache/operation/describe_events/
_describe_events_output.rs1#[non_exhaustive]
5#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
6pub struct DescribeEventsOutput {
7    pub marker: ::std::option::Option<::std::string::String>,
9    pub events: ::std::option::Option<::std::vec::Vec<crate::types::Event>>,
11    _request_id: Option<String>,
12}
13impl DescribeEventsOutput {
14    pub fn marker(&self) -> ::std::option::Option<&str> {
16        self.marker.as_deref()
17    }
18    pub fn events(&self) -> &[crate::types::Event] {
22        self.events.as_deref().unwrap_or_default()
23    }
24}
25impl ::aws_types::request_id::RequestId for DescribeEventsOutput {
26    fn request_id(&self) -> Option<&str> {
27        self._request_id.as_deref()
28    }
29}
30impl DescribeEventsOutput {
31    pub fn builder() -> crate::operation::describe_events::builders::DescribeEventsOutputBuilder {
33        crate::operation::describe_events::builders::DescribeEventsOutputBuilder::default()
34    }
35}
36
37#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
39#[non_exhaustive]
40pub struct DescribeEventsOutputBuilder {
41    pub(crate) marker: ::std::option::Option<::std::string::String>,
42    pub(crate) events: ::std::option::Option<::std::vec::Vec<crate::types::Event>>,
43    _request_id: Option<String>,
44}
45impl DescribeEventsOutputBuilder {
46    pub fn marker(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
48        self.marker = ::std::option::Option::Some(input.into());
49        self
50    }
51    pub fn set_marker(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
53        self.marker = input;
54        self
55    }
56    pub fn get_marker(&self) -> &::std::option::Option<::std::string::String> {
58        &self.marker
59    }
60    pub fn events(mut self, input: crate::types::Event) -> Self {
66        let mut v = self.events.unwrap_or_default();
67        v.push(input);
68        self.events = ::std::option::Option::Some(v);
69        self
70    }
71    pub fn set_events(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::Event>>) -> Self {
73        self.events = input;
74        self
75    }
76    pub fn get_events(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::Event>> {
78        &self.events
79    }
80    pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
81        self._request_id = Some(request_id.into());
82        self
83    }
84
85    pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
86        self._request_id = request_id;
87        self
88    }
89    pub fn build(self) -> crate::operation::describe_events::DescribeEventsOutput {
91        crate::operation::describe_events::DescribeEventsOutput {
92            marker: self.marker,
93            events: self.events,
94            _request_id: self._request_id,
95        }
96    }
97}