Struct aws_sdk_outposts::operation::list_sites::ListSitesInput
source · #[non_exhaustive]pub struct ListSitesInput {
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub operating_address_country_code_filter: Option<Vec<String>>,
pub operating_address_state_or_region_filter: Option<Vec<String>>,
pub operating_address_city_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.
operating_address_country_code_filter: Option<Vec<String>>
Filters the results by country code.
operating_address_state_or_region_filter: Option<Vec<String>>
Filters the results by state or region.
operating_address_city_filter: Option<Vec<String>>
Filters the results by city.
Implementations§
source§impl ListSitesInput
impl ListSitesInput
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 operating_address_country_code_filter(&self) -> &[String]
pub fn operating_address_country_code_filter(&self) -> &[String]
Filters the results by country code.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .operating_address_country_code_filter.is_none()
.
sourcepub fn operating_address_state_or_region_filter(&self) -> &[String]
pub fn operating_address_state_or_region_filter(&self) -> &[String]
Filters the results by state or region.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .operating_address_state_or_region_filter.is_none()
.
sourcepub fn operating_address_city_filter(&self) -> &[String]
pub fn operating_address_city_filter(&self) -> &[String]
Filters the results by city.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .operating_address_city_filter.is_none()
.
source§impl ListSitesInput
impl ListSitesInput
sourcepub fn builder() -> ListSitesInputBuilder
pub fn builder() -> ListSitesInputBuilder
Creates a new builder-style object to manufacture ListSitesInput
.
Trait Implementations§
source§impl Clone for ListSitesInput
impl Clone for ListSitesInput
source§fn clone(&self) -> ListSitesInput
fn clone(&self) -> ListSitesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListSitesInput
impl Debug for ListSitesInput
source§impl PartialEq for ListSitesInput
impl PartialEq for ListSitesInput
source§fn eq(&self, other: &ListSitesInput) -> bool
fn eq(&self, other: &ListSitesInput) -> bool
self
and other
values to be equal, and is used
by ==
.