#[non_exhaustive]pub struct ListOutpostsInput {
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub life_cycle_status_filter: Option<Vec<String>>,
pub availability_zone_filter: Option<Vec<String>>,
pub availability_zone_id_filter: Option<Vec<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.next_token: Option<String>
The pagination token.
max_results: Option<i32>
The maximum page size.
life_cycle_status_filter: Option<Vec<String>>
Filters the results by the lifecycle status.
availability_zone_filter: Option<Vec<String>>
Filters the results by Availability Zone (for example, us-east-1a
).
availability_zone_id_filter: Option<Vec<String>>
Filters the results by AZ ID (for example, use1-az1
).
Implementations§
source§impl ListOutpostsInput
impl ListOutpostsInput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The pagination token.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum page size.
sourcepub fn life_cycle_status_filter(&self) -> &[String]
pub fn life_cycle_status_filter(&self) -> &[String]
Filters the results by the lifecycle status.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .life_cycle_status_filter.is_none()
.
sourcepub fn availability_zone_filter(&self) -> &[String]
pub fn availability_zone_filter(&self) -> &[String]
Filters the results by Availability Zone (for example, us-east-1a
).
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .availability_zone_filter.is_none()
.
sourcepub fn availability_zone_id_filter(&self) -> &[String]
pub fn availability_zone_id_filter(&self) -> &[String]
Filters the results by AZ ID (for example, use1-az1
).
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .availability_zone_id_filter.is_none()
.
source§impl ListOutpostsInput
impl ListOutpostsInput
sourcepub fn builder() -> ListOutpostsInputBuilder
pub fn builder() -> ListOutpostsInputBuilder
Creates a new builder-style object to manufacture ListOutpostsInput
.
Trait Implementations§
source§impl Clone for ListOutpostsInput
impl Clone for ListOutpostsInput
source§fn clone(&self) -> ListOutpostsInput
fn clone(&self) -> ListOutpostsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListOutpostsInput
impl Debug for ListOutpostsInput
source§impl PartialEq for ListOutpostsInput
impl PartialEq for ListOutpostsInput
impl StructuralPartialEq for ListOutpostsInput
Auto Trait Implementations§
impl Freeze for ListOutpostsInput
impl RefUnwindSafe for ListOutpostsInput
impl Send for ListOutpostsInput
impl Sync for ListOutpostsInput
impl Unpin for ListOutpostsInput
impl UnwindSafe for ListOutpostsInput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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