| Copyright | (c) 2013-2021 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | None |
Amazonka.QuickSight.SearchFolders
Description
Searches the subfolders in a folder.
Synopsis
- data SearchFolders = SearchFolders' {}
- newSearchFolders :: Text -> SearchFolders
- searchFolders_nextToken :: Lens' SearchFolders (Maybe Text)
- searchFolders_maxResults :: Lens' SearchFolders (Maybe Natural)
- searchFolders_awsAccountId :: Lens' SearchFolders Text
- searchFolders_filters :: Lens' SearchFolders [FolderSearchFilter]
- data SearchFoldersResponse = SearchFoldersResponse' {}
- newSearchFoldersResponse :: Int -> SearchFoldersResponse
- searchFoldersResponse_requestId :: Lens' SearchFoldersResponse (Maybe Text)
- searchFoldersResponse_nextToken :: Lens' SearchFoldersResponse (Maybe Text)
- searchFoldersResponse_folderSummaryList :: Lens' SearchFoldersResponse (Maybe [FolderSummary])
- searchFoldersResponse_status :: Lens' SearchFoldersResponse Int
Creating a Request
data SearchFolders Source #
See: newSearchFolders smart constructor.
Constructors
| SearchFolders' | |
Fields
| |
Instances
Arguments
| :: Text | |
| -> SearchFolders |
Create a value of SearchFolders with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:nextToken:SearchFolders', searchFolders_nextToken - The token for the next set of results, or null if there are no more
results.
$sel:maxResults:SearchFolders', searchFolders_maxResults - The maximum number of results to be returned per request.
$sel:awsAccountId:SearchFolders', searchFolders_awsAccountId - The AWS account ID.
$sel:filters:SearchFolders', searchFolders_filters - 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" } ].
Request Lenses
searchFolders_nextToken :: Lens' SearchFolders (Maybe Text) Source #
The token for the next set of results, or null if there are no more results.
searchFolders_maxResults :: Lens' SearchFolders (Maybe Natural) Source #
The maximum number of results to be returned per request.
searchFolders_awsAccountId :: Lens' SearchFolders Text Source #
The AWS account ID.
searchFolders_filters :: Lens' SearchFolders [FolderSearchFilter] Source #
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" } ].
Destructuring the Response
data SearchFoldersResponse Source #
See: newSearchFoldersResponse smart constructor.
Constructors
| SearchFoldersResponse' | |
Fields
| |
Instances
newSearchFoldersResponse Source #
Arguments
| :: Int | |
| -> SearchFoldersResponse |
Create a value of SearchFoldersResponse with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:requestId:SearchFoldersResponse', searchFoldersResponse_requestId - The request ID.
$sel:nextToken:SearchFolders', searchFoldersResponse_nextToken - The token for the next set of results, or null if there are no more
results.
$sel:folderSummaryList:SearchFoldersResponse', searchFoldersResponse_folderSummaryList - A structure that contains all of the folders in your AWS account. This
structure provides basic information about the folders.
$sel:status:SearchFoldersResponse', searchFoldersResponse_status - The status. If succeeded, the status is SC_OK.
Response Lenses
searchFoldersResponse_requestId :: Lens' SearchFoldersResponse (Maybe Text) Source #
The request ID.
searchFoldersResponse_nextToken :: Lens' SearchFoldersResponse (Maybe Text) Source #
The token for the next set of results, or null if there are no more results.
searchFoldersResponse_folderSummaryList :: Lens' SearchFoldersResponse (Maybe [FolderSummary]) Source #
A structure that contains all of the folders in your AWS account. This structure provides basic information about the folders.
searchFoldersResponse_status :: Lens' SearchFoldersResponse Int Source #
The status. If succeeded, the status is SC_OK.