#[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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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) -> Option<&[String]>
pub fn life_cycle_status_filter(&self) -> Option<&[String]>
Filters the results by the lifecycle status.
sourcepub fn availability_zone_filter(&self) -> Option<&[String]>
pub fn availability_zone_filter(&self) -> Option<&[String]>
Filters the results by Availability Zone (for example, us-east-1a).
sourcepub fn availability_zone_id_filter(&self) -> Option<&[String]>
pub fn availability_zone_id_filter(&self) -> Option<&[String]>
Filters the results by AZ ID (for example, use1-az1).
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ListOutpostsInput
impl Debug for ListOutpostsInput
source§impl PartialEq<ListOutpostsInput> for ListOutpostsInput
impl PartialEq<ListOutpostsInput> for ListOutpostsInput
source§fn eq(&self, other: &ListOutpostsInput) -> bool
fn eq(&self, other: &ListOutpostsInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListOutpostsInput
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more