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 |
Lists information about dataset contents that have been created.
This operation returns paginated results.
Synopsis
- data ListDatasetContents = ListDatasetContents' {}
- newListDatasetContents :: Text -> ListDatasetContents
- listDatasetContents_nextToken :: Lens' ListDatasetContents (Maybe Text)
- listDatasetContents_scheduledBefore :: Lens' ListDatasetContents (Maybe UTCTime)
- listDatasetContents_maxResults :: Lens' ListDatasetContents (Maybe Natural)
- 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.
ListDatasetContents' | |
|
Instances
newListDatasetContents Source #
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:nextToken: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:maxResults:ListDatasetContents'
, listDatasetContents_maxResults
- The maximum number of results to return in this request.
$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)
$sel:datasetName:ListDatasetContents'
, listDatasetContents_datasetName
- The name of the dataset whose contents information you want to list.
Request Lenses
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_maxResults :: Lens' ListDatasetContents (Maybe Natural) Source #
The maximum number of results to return in this request.
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.
ListDatasetContentsResponse' | |
|
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.
$sel:nextToken: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.