#[allow(missing_docs)] #[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq)]
pub struct GetViewOutput {
pub view: ::std::option::Option<crate::types::View>,
pub tags: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
_request_id: Option<String>,
}
impl GetViewOutput {
pub fn view(&self) -> ::std::option::Option<&crate::types::View> {
self.view.as_ref()
}
pub fn tags(&self) -> ::std::option::Option<&::std::collections::HashMap<::std::string::String, ::std::string::String>> {
self.tags.as_ref()
}
}
impl ::std::fmt::Debug for GetViewOutput {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
let mut formatter = f.debug_struct("GetViewOutput");
formatter.field("view", &self.view);
formatter.field("tags", &"*** Sensitive Data Redacted ***");
formatter.field("_request_id", &self._request_id);
formatter.finish()
}
}
impl ::aws_types::request_id::RequestId for GetViewOutput {
fn request_id(&self) -> Option<&str> {
self._request_id.as_deref()
}
}
impl GetViewOutput {
pub fn builder() -> crate::operation::get_view::builders::GetViewOutputBuilder {
crate::operation::get_view::builders::GetViewOutputBuilder::default()
}
}
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default)]
#[non_exhaustive]
pub struct GetViewOutputBuilder {
pub(crate) view: ::std::option::Option<crate::types::View>,
pub(crate) tags: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
_request_id: Option<String>,
}
impl GetViewOutputBuilder {
pub fn view(mut self, input: crate::types::View) -> Self {
self.view = ::std::option::Option::Some(input);
self
}
pub fn set_view(mut self, input: ::std::option::Option<crate::types::View>) -> Self {
self.view = input;
self
}
pub fn get_view(&self) -> &::std::option::Option<crate::types::View> {
&self.view
}
pub fn tags(mut self, k: impl ::std::convert::Into<::std::string::String>, v: impl ::std::convert::Into<::std::string::String>) -> Self {
let mut hash_map = self.tags.unwrap_or_default();
hash_map.insert(k.into(), v.into());
self.tags = ::std::option::Option::Some(hash_map);
self
}
pub fn set_tags(mut self, input: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>) -> Self {
self.tags = input;
self
}
pub fn get_tags(&self) -> &::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>> {
&self.tags
}
pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
self._request_id = Some(request_id.into());
self
}
pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
self._request_id = request_id;
self
}
pub fn build(self) -> crate::operation::get_view::GetViewOutput {
crate::operation::get_view::GetViewOutput {
view: self.view,
tags: self.tags,
_request_id: self._request_id,
}
}
}
impl ::std::fmt::Debug for GetViewOutputBuilder {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
let mut formatter = f.debug_struct("GetViewOutputBuilder");
formatter.field("view", &self.view);
formatter.field("tags", &"*** Sensitive Data Redacted ***");
formatter.field("_request_id", &self._request_id);
formatter.finish()
}
}