#[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
source§fn eq(&self, other: &ListOutpostsInput) -> bool
fn eq(&self, other: &ListOutpostsInput) -> bool
self
and other
values to be equal, and is used
by ==
.