Struct aws_sdk_quicksight::input::SearchFoldersInput
source · [−]#[non_exhaustive]pub struct SearchFoldersInput {
pub aws_account_id: Option<String>,
pub filters: Option<Vec<FolderSearchFilter>>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}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.aws_account_id: Option<String>The ID for the Amazon Web Services account that contains the folder.
filters: Option<Vec<FolderSearchFilter>>The filters to apply to the search. Currently, you can search only by the parent folder ARN. For example, "Filters": [ { "Name": "PARENT_FOLDER_ARN", "Operator": "StringEquals", "Value": "arn:aws:quicksight:us-east-1:1:folder/folderId" } ].
next_token: Option<String>The token for the next set of results, or null if there are no more results.
max_results: Option<i32>The maximum number of results to be returned per request.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SearchFolders, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SearchFolders, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<SearchFolders>
Creates a new builder-style object to manufacture SearchFoldersInput
The ID for the Amazon Web Services account that contains the folder.
The filters to apply to the search. Currently, you can search only by the parent folder ARN. For example, "Filters": [ { "Name": "PARENT_FOLDER_ARN", "Operator": "StringEquals", "Value": "arn:aws:quicksight:us-east-1:1:folder/folderId" } ].
The token for the next set of results, or null if there are no more results.
The maximum number of results to be returned per request.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for SearchFoldersInput
impl Send for SearchFoldersInput
impl Sync for SearchFoldersInput
impl Unpin for SearchFoldersInput
impl UnwindSafe for SearchFoldersInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more