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
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.
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) -> Option<&[String]>
pub fn operating_address_country_code_filter(&self) -> Option<&[String]>
Filters the results by country code.
sourcepub fn operating_address_state_or_region_filter(&self) -> Option<&[String]>
pub fn operating_address_state_or_region_filter(&self) -> Option<&[String]>
Filters the results by state or region.
sourcepub fn operating_address_city_filter(&self) -> Option<&[String]>
pub fn operating_address_city_filter(&self) -> Option<&[String]>
Filters the results by city.
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
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 ListSitesInput
impl Debug for ListSitesInput
source§impl PartialEq<ListSitesInput> for ListSitesInput
impl PartialEq<ListSitesInput> for ListSitesInput
source§fn eq(&self, other: &ListSitesInput) -> bool
fn eq(&self, other: &ListSitesInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListSitesInput
Auto Trait Implementations§
impl RefUnwindSafe for ListSitesInput
impl Send for ListSitesInput
impl Sync for ListSitesInput
impl Unpin for ListSitesInput
impl UnwindSafe for ListSitesInput
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