aws_sdk_connect/operation/create_view/
_create_view_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 CreateViewOutput {
6    /// <p>A view resource object. Contains metadata and content necessary to render the view.</p>
7    pub view: ::std::option::Option<crate::types::View>,
8    _request_id: Option<String>,
9}
10impl CreateViewOutput {
11    /// <p>A view resource object. Contains metadata and content necessary to render the view.</p>
12    pub fn view(&self) -> ::std::option::Option<&crate::types::View> {
13        self.view.as_ref()
14    }
15}
16impl ::aws_types::request_id::RequestId for CreateViewOutput {
17    fn request_id(&self) -> Option<&str> {
18        self._request_id.as_deref()
19    }
20}
21impl CreateViewOutput {
22    /// Creates a new builder-style object to manufacture [`CreateViewOutput`](crate::operation::create_view::CreateViewOutput).
23    pub fn builder() -> crate::operation::create_view::builders::CreateViewOutputBuilder {
24        crate::operation::create_view::builders::CreateViewOutputBuilder::default()
25    }
26}
27
28/// A builder for [`CreateViewOutput`](crate::operation::create_view::CreateViewOutput).
29#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
30#[non_exhaustive]
31pub struct CreateViewOutputBuilder {
32    pub(crate) view: ::std::option::Option<crate::types::View>,
33    _request_id: Option<String>,
34}
35impl CreateViewOutputBuilder {
36    /// <p>A view resource object. Contains metadata and content necessary to render the view.</p>
37    pub fn view(mut self, input: crate::types::View) -> Self {
38        self.view = ::std::option::Option::Some(input);
39        self
40    }
41    /// <p>A view resource object. Contains metadata and content necessary to render the view.</p>
42    pub fn set_view(mut self, input: ::std::option::Option<crate::types::View>) -> Self {
43        self.view = input;
44        self
45    }
46    /// <p>A view resource object. Contains metadata and content necessary to render the view.</p>
47    pub fn get_view(&self) -> &::std::option::Option<crate::types::View> {
48        &self.view
49    }
50    pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
51        self._request_id = Some(request_id.into());
52        self
53    }
54
55    pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
56        self._request_id = request_id;
57        self
58    }
59    /// Consumes the builder and constructs a [`CreateViewOutput`](crate::operation::create_view::CreateViewOutput).
60    pub fn build(self) -> crate::operation::create_view::CreateViewOutput {
61        crate::operation::create_view::CreateViewOutput {
62            view: self.view,
63            _request_id: self._request_id,
64        }
65    }
66}