aws_sdk_verifiedpermissions/operation/get_schema/
_get_schema_input.rs#[allow(missing_docs)] #[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct GetSchemaInput {
pub policy_store_id: ::std::option::Option<::std::string::String>,
}
impl GetSchemaInput {
pub fn policy_store_id(&self) -> ::std::option::Option<&str> {
self.policy_store_id.as_deref()
}
}
impl GetSchemaInput {
pub fn builder() -> crate::operation::get_schema::builders::GetSchemaInputBuilder {
crate::operation::get_schema::builders::GetSchemaInputBuilder::default()
}
}
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct GetSchemaInputBuilder {
pub(crate) policy_store_id: ::std::option::Option<::std::string::String>,
}
impl GetSchemaInputBuilder {
pub fn policy_store_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.policy_store_id = ::std::option::Option::Some(input.into());
self
}
pub fn set_policy_store_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.policy_store_id = input;
self
}
pub fn get_policy_store_id(&self) -> &::std::option::Option<::std::string::String> {
&self.policy_store_id
}
pub fn build(self) -> ::std::result::Result<crate::operation::get_schema::GetSchemaInput, ::aws_smithy_types::error::operation::BuildError> {
::std::result::Result::Ok(crate::operation::get_schema::GetSchemaInput {
policy_store_id: self.policy_store_id,
})
}
}