Struct aws_sdk_s3control::operation::list_multi_region_access_points::ListMultiRegionAccessPointsOutput
source · #[non_exhaustive]pub struct ListMultiRegionAccessPointsOutput {
pub access_points: Option<Vec<MultiRegionAccessPointReport>>,
pub next_token: Option<String>,
/* private fields */
}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.access_points: Option<Vec<MultiRegionAccessPointReport>>The list of Multi-Region Access Points associated with the user.
next_token: Option<String>If the specified bucket has more Multi-Region Access Points than can be returned in one call to this action, this field contains a continuation token. You can use this token tin subsequent calls to this action to retrieve additional Multi-Region Access Points.
Implementations§
source§impl ListMultiRegionAccessPointsOutput
impl ListMultiRegionAccessPointsOutput
sourcepub fn access_points(&self) -> &[MultiRegionAccessPointReport]
pub fn access_points(&self) -> &[MultiRegionAccessPointReport]
The list of Multi-Region Access Points associated with the user.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .access_points.is_none().
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the specified bucket has more Multi-Region Access Points than can be returned in one call to this action, this field contains a continuation token. You can use this token tin subsequent calls to this action to retrieve additional Multi-Region Access Points.
source§impl ListMultiRegionAccessPointsOutput
impl ListMultiRegionAccessPointsOutput
sourcepub fn builder() -> ListMultiRegionAccessPointsOutputBuilder
pub fn builder() -> ListMultiRegionAccessPointsOutputBuilder
Creates a new builder-style object to manufacture ListMultiRegionAccessPointsOutput.
Trait Implementations§
source§impl Clone for ListMultiRegionAccessPointsOutput
impl Clone for ListMultiRegionAccessPointsOutput
source§fn clone(&self) -> ListMultiRegionAccessPointsOutput
fn clone(&self) -> ListMultiRegionAccessPointsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for ListMultiRegionAccessPointsOutput
impl PartialEq for ListMultiRegionAccessPointsOutput
source§fn eq(&self, other: &ListMultiRegionAccessPointsOutput) -> bool
fn eq(&self, other: &ListMultiRegionAccessPointsOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for ListMultiRegionAccessPointsOutput
impl RequestId for ListMultiRegionAccessPointsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for ListMultiRegionAccessPointsOutput
Auto Trait Implementations§
impl Freeze for ListMultiRegionAccessPointsOutput
impl RefUnwindSafe for ListMultiRegionAccessPointsOutput
impl Send for ListMultiRegionAccessPointsOutput
impl Sync for ListMultiRegionAccessPointsOutput
impl Unpin for ListMultiRegionAccessPointsOutput
impl UnwindSafe for ListMultiRegionAccessPointsOutput
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