Struct aws_sdk_connectcases::input::SearchCasesInput
source · [−]#[non_exhaustive]pub struct SearchCasesInput { /* private fields */ }
Implementations
sourceimpl SearchCasesInput
impl SearchCasesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SearchCases, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SearchCases, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<SearchCases
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SearchCasesInput
.
sourceimpl SearchCasesInput
impl SearchCasesInput
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of cases to return. The current maximum supported value is 25. This is also the default value when no other value is provided.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
sourcepub fn search_term(&self) -> Option<&str>
pub fn search_term(&self) -> Option<&str>
A word or phrase used to perform a quick search.
sourcepub fn filter(&self) -> Option<&CaseFilter>
pub fn filter(&self) -> Option<&CaseFilter>
A list of filter objects.
sourcepub fn sorts(&self) -> Option<&[Sort]>
pub fn sorts(&self) -> Option<&[Sort]>
A list of sorts where each sort specifies a field and their sort order to be applied to the results.
sourcepub fn fields(&self) -> Option<&[FieldIdentifier]>
pub fn fields(&self) -> Option<&[FieldIdentifier]>
The list of field identifiers to be returned as part of the response.
Trait Implementations
sourceimpl Clone for SearchCasesInput
impl Clone for SearchCasesInput
sourcefn clone(&self) -> SearchCasesInput
fn clone(&self) -> SearchCasesInput
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 Debug for SearchCasesInput
impl Debug for SearchCasesInput
sourceimpl PartialEq<SearchCasesInput> for SearchCasesInput
impl PartialEq<SearchCasesInput> for SearchCasesInput
sourcefn eq(&self, other: &SearchCasesInput) -> bool
fn eq(&self, other: &SearchCasesInput) -> bool
impl StructuralPartialEq for SearchCasesInput
Auto Trait Implementations
impl RefUnwindSafe for SearchCasesInput
impl Send for SearchCasesInput
impl Sync for SearchCasesInput
impl Unpin for SearchCasesInput
impl UnwindSafe for SearchCasesInput
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