#[non_exhaustive]pub struct SearchResourcesInput { /* private fields */ }
Implementations§
source§impl SearchResourcesInput
impl SearchResourcesInput
sourcepub fn authentication_token(&self) -> Option<&str>
pub fn authentication_token(&self) -> Option<&str>
Amazon WorkDocs authentication token. Not required when using Amazon Web Services administrator credentials to access the API.
sourcepub fn query_text(&self) -> Option<&str>
pub fn query_text(&self) -> Option<&str>
The String to search for. Searches across different text fields based on request parameters. Use double quotes around the query string for exact phrase matches.
sourcepub fn query_scopes(&self) -> Option<&[SearchQueryScopeType]>
pub fn query_scopes(&self) -> Option<&[SearchQueryScopeType]>
Filter based on the text field type. A Folder has only a name and no content. A Comment has only content and no name. A Document or Document Version has a name and content
sourcepub fn organization_id(&self) -> Option<&str>
pub fn organization_id(&self) -> Option<&str>
Filters based on the resource owner OrgId. This is a mandatory parameter when using Admin SigV4 credentials.
sourcepub fn additional_response_fields(
&self
) -> Option<&[AdditionalResponseFieldType]>
pub fn additional_response_fields( &self ) -> Option<&[AdditionalResponseFieldType]>
A list of attributes to include in the response. Used to request fields that are not normally returned in a standard response.
sourcepub fn order_by(&self) -> Option<&[SearchSortResult]>
pub fn order_by(&self) -> Option<&[SearchSortResult]>
Order by results in one or more categories.
source§impl SearchResourcesInput
impl SearchResourcesInput
sourcepub fn builder() -> SearchResourcesInputBuilder
pub fn builder() -> SearchResourcesInputBuilder
Creates a new builder-style object to manufacture SearchResourcesInput
.
source§impl SearchResourcesInput
impl SearchResourcesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SearchResources, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<SearchResources, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<SearchResources
>
Trait Implementations§
source§impl Clone for SearchResourcesInput
impl Clone for SearchResourcesInput
source§fn clone(&self) -> SearchResourcesInput
fn clone(&self) -> SearchResourcesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SearchResourcesInput
impl Debug for SearchResourcesInput
source§impl PartialEq<SearchResourcesInput> for SearchResourcesInput
impl PartialEq<SearchResourcesInput> for SearchResourcesInput
source§fn eq(&self, other: &SearchResourcesInput) -> bool
fn eq(&self, other: &SearchResourcesInput) -> bool
self
and other
values to be equal, and is used
by ==
.