public static interface CreateScriptRequest.Builder extends GlueRequest.Builder, CopyableBuilder<CreateScriptRequest.Builder,CreateScriptRequest>
build
requestOverrideConfig
copy
apply, build
CreateScriptRequest.Builder dagNodes(Collection<CodeGenNode> dagNodes)
A list of the nodes in the DAG.
dagNodes
- A list of the nodes in the DAG.CreateScriptRequest.Builder dagNodes(CodeGenNode... dagNodes)
A list of the nodes in the DAG.
dagNodes
- A list of the nodes in the DAG.CreateScriptRequest.Builder dagNodes(Consumer<CodeGenNode.Builder>... dagNodes)
A list of the nodes in the DAG.
This is a convenience that creates an instance of theList.Builder
avoiding the need to
create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and its
result is passed to #dagNodes(List)
.dagNodes
- a consumer that will call methods on List.Builder
#dagNodes(List)
CreateScriptRequest.Builder dagEdges(Collection<CodeGenEdge> dagEdges)
A list of the edges in the DAG.
dagEdges
- A list of the edges in the DAG.CreateScriptRequest.Builder dagEdges(CodeGenEdge... dagEdges)
A list of the edges in the DAG.
dagEdges
- A list of the edges in the DAG.CreateScriptRequest.Builder dagEdges(Consumer<CodeGenEdge.Builder>... dagEdges)
A list of the edges in the DAG.
This is a convenience that creates an instance of theList.Builder
avoiding the need to
create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and its
result is passed to #dagEdges(List)
.dagEdges
- a consumer that will call methods on List.Builder
#dagEdges(List)
CreateScriptRequest.Builder requestOverrideConfig(AwsRequestOverrideConfig awsRequestOverrideConfig)
AwsRequest.Builder
requestOverrideConfig
in interface AwsRequest.Builder
awsRequestOverrideConfig
- The override configuration.CreateScriptRequest.Builder requestOverrideConfig(Consumer<AwsRequestOverrideConfig.Builder> builderConsumer)
AwsRequest.Builder
requestOverrideConfig
in interface AwsRequest.Builder
builderConsumer
- A Consumer
to which an empty AwsRequestOverrideConfig.Builder
will be given.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.