#[allow(missing_docs)] #[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct GetPolicyOutput {
pub arn: ::std::string::String,
pub token: ::std::string::String,
pub policy: ::std::option::Option<::std::string::String>,
_request_id: Option<String>,
}
impl GetPolicyOutput {
pub fn arn(&self) -> &str {
use std::ops::Deref;
self.arn.deref()
}
pub fn token(&self) -> &str {
use std::ops::Deref;
self.token.deref()
}
pub fn policy(&self) -> ::std::option::Option<&str> {
self.policy.as_deref()
}
}
impl ::aws_types::request_id::RequestId for GetPolicyOutput {
fn request_id(&self) -> Option<&str> {
self._request_id.as_deref()
}
}
impl GetPolicyOutput {
pub fn builder() -> crate::operation::get_policy::builders::GetPolicyOutputBuilder {
crate::operation::get_policy::builders::GetPolicyOutputBuilder::default()
}
}
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct GetPolicyOutputBuilder {
pub(crate) arn: ::std::option::Option<::std::string::String>,
pub(crate) token: ::std::option::Option<::std::string::String>,
pub(crate) policy: ::std::option::Option<::std::string::String>,
_request_id: Option<String>,
}
impl GetPolicyOutputBuilder {
pub fn arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.arn = ::std::option::Option::Some(input.into());
self
}
pub fn set_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.arn = input;
self
}
pub fn get_arn(&self) -> &::std::option::Option<::std::string::String> {
&self.arn
}
pub fn token(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.token = ::std::option::Option::Some(input.into());
self
}
pub fn set_token(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.token = input;
self
}
pub fn get_token(&self) -> &::std::option::Option<::std::string::String> {
&self.token
}
pub fn policy(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.policy = ::std::option::Option::Some(input.into());
self
}
pub fn set_policy(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.policy = input;
self
}
pub fn get_policy(&self) -> &::std::option::Option<::std::string::String> {
&self.policy
}
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) -> ::std::result::Result<crate::operation::get_policy::GetPolicyOutput, ::aws_smithy_types::error::operation::BuildError> {
::std::result::Result::Ok(crate::operation::get_policy::GetPolicyOutput {
arn: self.arn.ok_or_else(|| {
::aws_smithy_types::error::operation::BuildError::missing_field(
"arn",
"arn was not specified but it is required when building GetPolicyOutput",
)
})?,
token: self.token.ok_or_else(|| {
::aws_smithy_types::error::operation::BuildError::missing_field(
"token",
"token was not specified but it is required when building GetPolicyOutput",
)
})?,
policy: self.policy,
_request_id: self._request_id,
})
}
}