Struct aws_sdk_s3control::operation::get_multi_region_access_point::GetMultiRegionAccessPointInput
source · #[non_exhaustive]pub struct GetMultiRegionAccessPointInput {
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>The name of the Multi-Region Access Point whose configuration information you want to receive. 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 GetMultiRegionAccessPointInput
impl GetMultiRegionAccessPointInput
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>
The name of the Multi-Region Access Point whose configuration information you want to receive. 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 GetMultiRegionAccessPointInput
impl GetMultiRegionAccessPointInput
sourcepub fn builder() -> GetMultiRegionAccessPointInputBuilder
pub fn builder() -> GetMultiRegionAccessPointInputBuilder
Creates a new builder-style object to manufacture GetMultiRegionAccessPointInput.
Trait Implementations§
source§impl Clone for GetMultiRegionAccessPointInput
impl Clone for GetMultiRegionAccessPointInput
source§fn clone(&self) -> GetMultiRegionAccessPointInput
fn clone(&self) -> GetMultiRegionAccessPointInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for GetMultiRegionAccessPointInput
impl PartialEq for GetMultiRegionAccessPointInput
source§fn eq(&self, other: &GetMultiRegionAccessPointInput) -> bool
fn eq(&self, other: &GetMultiRegionAccessPointInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetMultiRegionAccessPointInput
Auto Trait Implementations§
impl Freeze for GetMultiRegionAccessPointInput
impl RefUnwindSafe for GetMultiRegionAccessPointInput
impl Send for GetMultiRegionAccessPointInput
impl Sync for GetMultiRegionAccessPointInput
impl Unpin for GetMultiRegionAccessPointInput
impl UnwindSafe for GetMultiRegionAccessPointInput
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