public static interface DatasetAction.Builder extends SdkPojo, CopyableBuilder<DatasetAction.Builder,DatasetAction>
Modifier and Type | Method and Description |
---|---|
DatasetAction.Builder |
actionName(String actionName)
The name of the data set action by which data set contents are automatically created.
|
default DatasetAction.Builder |
containerAction(Consumer<ContainerDatasetAction.Builder> containerAction)
Information which allows the system to run a containerized application in order to create the data set
contents.
|
DatasetAction.Builder |
containerAction(ContainerDatasetAction containerAction)
Information which allows the system to run a containerized application in order to create the data set
contents.
|
default DatasetAction.Builder |
queryAction(Consumer<SqlQueryDatasetAction.Builder> queryAction)
An "SqlQueryDatasetAction" object that contains the SQL query to modify the message.
|
DatasetAction.Builder |
queryAction(SqlQueryDatasetAction queryAction)
An "SqlQueryDatasetAction" object that contains the SQL query to modify the message.
|
copy
applyMutation, build
DatasetAction.Builder actionName(String actionName)
The name of the data set action by which data set contents are automatically created.
actionName
- The name of the data set action by which data set contents are automatically created.DatasetAction.Builder queryAction(SqlQueryDatasetAction queryAction)
An "SqlQueryDatasetAction" object that contains the SQL query to modify the message.
queryAction
- An "SqlQueryDatasetAction" object that contains the SQL query to modify the message.default DatasetAction.Builder queryAction(Consumer<SqlQueryDatasetAction.Builder> queryAction)
An "SqlQueryDatasetAction" object that contains the SQL query to modify the message.
This is a convenience that creates an instance of theSqlQueryDatasetAction.Builder
avoiding the need
to create one manually via SqlQueryDatasetAction.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and
its result is passed to queryAction(SqlQueryDatasetAction)
.queryAction
- a consumer that will call methods on SqlQueryDatasetAction.Builder
queryAction(SqlQueryDatasetAction)
DatasetAction.Builder containerAction(ContainerDatasetAction containerAction)
Information which allows the system to run a containerized application in order to create the data set contents. The application must be in a Docker container along with any needed support libraries.
containerAction
- Information which allows the system to run a containerized application in order to create the data set
contents. The application must be in a Docker container along with any needed support libraries.default DatasetAction.Builder containerAction(Consumer<ContainerDatasetAction.Builder> containerAction)
Information which allows the system to run a containerized application in order to create the data set contents. The application must be in a Docker container along with any needed support libraries.
This is a convenience that creates an instance of theContainerDatasetAction.Builder
avoiding the
need to create one manually via ContainerDatasetAction.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and
its result is passed to containerAction(ContainerDatasetAction)
.containerAction
- a consumer that will call methods on ContainerDatasetAction.Builder
containerAction(ContainerDatasetAction)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.