#[non_exhaustive]pub struct SearchAvailablePhoneNumbersInput { /* private fields */ }Implementations
sourceimpl SearchAvailablePhoneNumbersInput
impl SearchAvailablePhoneNumbersInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SearchAvailablePhoneNumbers, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SearchAvailablePhoneNumbers, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<SearchAvailablePhoneNumbers>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SearchAvailablePhoneNumbersInput.
sourceimpl SearchAvailablePhoneNumbersInput
impl SearchAvailablePhoneNumbersInput
sourcepub fn area_code(&self) -> Option<&str>
pub fn area_code(&self) -> Option<&str>
The area code used to filter results. Only applies to the US.
sourcepub fn country(&self) -> Option<&str>
pub fn country(&self) -> Option<&str>
The country used to filter results. Defaults to the US Format: ISO 3166-1 alpha-2.
sourcepub fn state(&self) -> Option<&str>
pub fn state(&self) -> Option<&str>
The state used to filter results. Required only if you provide City. Only applies to the US.
sourcepub fn toll_free_prefix(&self) -> Option<&str>
pub fn toll_free_prefix(&self) -> Option<&str>
The toll-free prefix that you use to filter results. Only applies to the US.
sourcepub fn phone_number_type(&self) -> Option<&PhoneNumberType>
pub fn phone_number_type(&self) -> Option<&PhoneNumberType>
The phone number type used to filter results. Required for non-US numbers.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return in a single call.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token used to retrieve the next page of results.
Trait Implementations
sourceimpl Clone for SearchAvailablePhoneNumbersInput
impl Clone for SearchAvailablePhoneNumbersInput
sourcefn clone(&self) -> SearchAvailablePhoneNumbersInput
fn clone(&self) -> SearchAvailablePhoneNumbersInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl PartialEq<SearchAvailablePhoneNumbersInput> for SearchAvailablePhoneNumbersInput
impl PartialEq<SearchAvailablePhoneNumbersInput> for SearchAvailablePhoneNumbersInput
sourcefn eq(&self, other: &SearchAvailablePhoneNumbersInput) -> bool
fn eq(&self, other: &SearchAvailablePhoneNumbersInput) -> bool
impl StructuralPartialEq for SearchAvailablePhoneNumbersInput
Auto Trait Implementations
impl RefUnwindSafe for SearchAvailablePhoneNumbersInput
impl Send for SearchAvailablePhoneNumbersInput
impl Sync for SearchAvailablePhoneNumbersInput
impl Unpin for SearchAvailablePhoneNumbersInput
impl UnwindSafe for SearchAvailablePhoneNumbersInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more