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 |
Synopsis
Documentation
data DatasetAction Source #
A DatasetAction
object that specifies how dataset contents are
automatically created.
See: newDatasetAction
smart constructor.
DatasetAction' | |
|
Instances
newDatasetAction :: DatasetAction Source #
Create a value of DatasetAction
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:queryAction:DatasetAction'
, datasetAction_queryAction
- An SqlQueryDatasetAction
object that uses an SQL query to
automatically create dataset contents.
$sel:actionName:DatasetAction'
, datasetAction_actionName
- The name of the dataset action by which dataset contents are
automatically created.
$sel:containerAction:DatasetAction'
, datasetAction_containerAction
- Information that allows the system to run a containerized application to
create the dataset contents. The application must be in a Docker
container along with any required support libraries.
datasetAction_queryAction :: Lens' DatasetAction (Maybe SqlQueryDatasetAction) Source #
An SqlQueryDatasetAction
object that uses an SQL query to
automatically create dataset contents.
datasetAction_actionName :: Lens' DatasetAction (Maybe Text) Source #
The name of the dataset action by which dataset contents are automatically created.
datasetAction_containerAction :: Lens' DatasetAction (Maybe ContainerDatasetAction) Source #
Information that allows the system to run a containerized application to create the dataset contents. The application must be in a Docker container along with any required support libraries.