#[allow(missing_docs)] #[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct GetBucketAbacInput {
pub bucket: ::std::option::Option<::std::string::String>,
pub expected_bucket_owner: ::std::option::Option<::std::string::String>,
}
impl GetBucketAbacInput {
pub fn bucket(&self) -> ::std::option::Option<&str> {
self.bucket.as_deref()
}
pub fn expected_bucket_owner(&self) -> ::std::option::Option<&str> {
self.expected_bucket_owner.as_deref()
}
}
impl GetBucketAbacInput {
pub fn builder() -> crate::operation::get_bucket_abac::builders::GetBucketAbacInputBuilder {
crate::operation::get_bucket_abac::builders::GetBucketAbacInputBuilder::default()
}
}
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct GetBucketAbacInputBuilder {
pub(crate) bucket: ::std::option::Option<::std::string::String>,
pub(crate) expected_bucket_owner: ::std::option::Option<::std::string::String>,
}
impl GetBucketAbacInputBuilder {
pub fn bucket(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.bucket = ::std::option::Option::Some(input.into());
self
}
pub fn set_bucket(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.bucket = input;
self
}
pub fn get_bucket(&self) -> &::std::option::Option<::std::string::String> {
&self.bucket
}
pub fn expected_bucket_owner(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.expected_bucket_owner = ::std::option::Option::Some(input.into());
self
}
pub fn set_expected_bucket_owner(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.expected_bucket_owner = input;
self
}
pub fn get_expected_bucket_owner(&self) -> &::std::option::Option<::std::string::String> {
&self.expected_bucket_owner
}
pub fn build(
self,
) -> ::std::result::Result<crate::operation::get_bucket_abac::GetBucketAbacInput, ::aws_smithy_types::error::operation::BuildError> {
::std::result::Result::Ok(crate::operation::get_bucket_abac::GetBucketAbacInput {
bucket: self.bucket,
expected_bucket_owner: self.expected_bucket_owner,
})
}
}