Struct aws_sdk_s3control::operation::get_multi_region_access_point_policy_status::GetMultiRegionAccessPointPolicyStatusInput
source · #[non_exhaustive]pub struct GetMultiRegionAccessPointPolicyStatusInput {
pub account_id: Option<String>,
pub name: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.account_id: Option<String>The Amazon Web Services account ID for the owner of the Multi-Region Access Point.
name: Option<String>Specifies the Multi-Region Access Point. The name of the Multi-Region Access Point is different from the alias. For more information about the distinction between the name and the alias of an Multi-Region Access Point, see Rules for naming Amazon S3 Multi-Region Access Points in the Amazon S3 User Guide.
Implementations§
source§impl GetMultiRegionAccessPointPolicyStatusInput
impl GetMultiRegionAccessPointPolicyStatusInput
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The Amazon Web Services account ID for the owner of the Multi-Region Access Point.
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
Specifies the Multi-Region Access Point. The name of the Multi-Region Access Point is different from the alias. For more information about the distinction between the name and the alias of an Multi-Region Access Point, see Rules for naming Amazon S3 Multi-Region Access Points in the Amazon S3 User Guide.
source§impl GetMultiRegionAccessPointPolicyStatusInput
impl GetMultiRegionAccessPointPolicyStatusInput
sourcepub fn builder() -> GetMultiRegionAccessPointPolicyStatusInputBuilder
pub fn builder() -> GetMultiRegionAccessPointPolicyStatusInputBuilder
Creates a new builder-style object to manufacture GetMultiRegionAccessPointPolicyStatusInput.
Trait Implementations§
source§impl Clone for GetMultiRegionAccessPointPolicyStatusInput
impl Clone for GetMultiRegionAccessPointPolicyStatusInput
source§fn clone(&self) -> GetMultiRegionAccessPointPolicyStatusInput
fn clone(&self) -> GetMultiRegionAccessPointPolicyStatusInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for GetMultiRegionAccessPointPolicyStatusInput
impl PartialEq for GetMultiRegionAccessPointPolicyStatusInput
source§fn eq(&self, other: &GetMultiRegionAccessPointPolicyStatusInput) -> bool
fn eq(&self, other: &GetMultiRegionAccessPointPolicyStatusInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetMultiRegionAccessPointPolicyStatusInput
Auto Trait Implementations§
impl Freeze for GetMultiRegionAccessPointPolicyStatusInput
impl RefUnwindSafe for GetMultiRegionAccessPointPolicyStatusInput
impl Send for GetMultiRegionAccessPointPolicyStatusInput
impl Sync for GetMultiRegionAccessPointPolicyStatusInput
impl Unpin for GetMultiRegionAccessPointPolicyStatusInput
impl UnwindSafe for GetMultiRegionAccessPointPolicyStatusInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more