| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.IoTAnalytics.ListDatasetContents
Description
Lists information about dataset contents that have been created.
This operation returns paginated results.
Synopsis
- data ListDatasetContents = ListDatasetContents' {}
- newListDatasetContents :: Text -> ListDatasetContents
- listDatasetContents_maxResults :: Lens' ListDatasetContents (Maybe Natural)
- listDatasetContents_nextToken :: Lens' ListDatasetContents (Maybe Text)
- listDatasetContents_scheduledBefore :: Lens' ListDatasetContents (Maybe UTCTime)
- listDatasetContents_scheduledOnOrAfter :: Lens' ListDatasetContents (Maybe UTCTime)
- listDatasetContents_datasetName :: Lens' ListDatasetContents Text
- data ListDatasetContentsResponse = ListDatasetContentsResponse' {}
- newListDatasetContentsResponse :: Int -> ListDatasetContentsResponse
- listDatasetContentsResponse_datasetContentSummaries :: Lens' ListDatasetContentsResponse (Maybe [DatasetContentSummary])
- listDatasetContentsResponse_nextToken :: Lens' ListDatasetContentsResponse (Maybe Text)
- listDatasetContentsResponse_httpStatus :: Lens' ListDatasetContentsResponse Int
Creating a Request
data ListDatasetContents Source #
See: newListDatasetContents smart constructor.
Constructors
| ListDatasetContents' | |
Fields
| |
Instances
newListDatasetContents Source #
Arguments
| :: Text | |
| -> ListDatasetContents |
Create a value of ListDatasetContents 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:maxResults:ListDatasetContents', listDatasetContents_maxResults - The maximum number of results to return in this request.
ListDatasetContents, listDatasetContents_nextToken - The token for the next set of results.
$sel:scheduledBefore:ListDatasetContents', listDatasetContents_scheduledBefore - A filter to limit results to those dataset contents whose creation is
scheduled before the given time. See the field triggers.schedule in
the CreateDataset request. (timestamp)
$sel:scheduledOnOrAfter:ListDatasetContents', listDatasetContents_scheduledOnOrAfter - A filter to limit results to those dataset contents whose creation is
scheduled on or after the given time. See the field triggers.schedule
in the CreateDataset request. (timestamp)
ListDatasetContents, listDatasetContents_datasetName - The name of the dataset whose contents information you want to list.
Request Lenses
listDatasetContents_maxResults :: Lens' ListDatasetContents (Maybe Natural) Source #
The maximum number of results to return in this request.
listDatasetContents_nextToken :: Lens' ListDatasetContents (Maybe Text) Source #
The token for the next set of results.
listDatasetContents_scheduledBefore :: Lens' ListDatasetContents (Maybe UTCTime) Source #
A filter to limit results to those dataset contents whose creation is
scheduled before the given time. See the field triggers.schedule in
the CreateDataset request. (timestamp)
listDatasetContents_scheduledOnOrAfter :: Lens' ListDatasetContents (Maybe UTCTime) Source #
A filter to limit results to those dataset contents whose creation is
scheduled on or after the given time. See the field triggers.schedule
in the CreateDataset request. (timestamp)
listDatasetContents_datasetName :: Lens' ListDatasetContents Text Source #
The name of the dataset whose contents information you want to list.
Destructuring the Response
data ListDatasetContentsResponse Source #
See: newListDatasetContentsResponse smart constructor.
Constructors
| ListDatasetContentsResponse' | |
Fields
| |
Instances
newListDatasetContentsResponse Source #
Create a value of ListDatasetContentsResponse 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:datasetContentSummaries:ListDatasetContentsResponse', listDatasetContentsResponse_datasetContentSummaries - Summary information about dataset contents that have been created.
ListDatasetContents, listDatasetContentsResponse_nextToken - The token to retrieve the next set of results, or null if there are no
more results.
$sel:httpStatus:ListDatasetContentsResponse', listDatasetContentsResponse_httpStatus - The response's http status code.
Response Lenses
listDatasetContentsResponse_datasetContentSummaries :: Lens' ListDatasetContentsResponse (Maybe [DatasetContentSummary]) Source #
Summary information about dataset contents that have been created.
listDatasetContentsResponse_nextToken :: Lens' ListDatasetContentsResponse (Maybe Text) Source #
The token to retrieve the next set of results, or null if there are no
more results.
listDatasetContentsResponse_httpStatus :: Lens' ListDatasetContentsResponse Int Source #
The response's http status code.