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
impl StructuralPartialEq for ListSitesInput
Auto Trait Implementations§
impl Freeze for ListSitesInput
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
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