public static interface SqlApplicationConfiguration.Builder extends SdkPojo, CopyableBuilder<SqlApplicationConfiguration.Builder,SqlApplicationConfiguration>
Modifier and Type | Method and Description |
---|---|
SqlApplicationConfiguration.Builder |
inputs(Collection<Input> inputs)
The array of Input objects describing the input streams used by the application.
|
SqlApplicationConfiguration.Builder |
inputs(Consumer<Input.Builder>... inputs)
The array of Input objects describing the input streams used by the application.
|
SqlApplicationConfiguration.Builder |
inputs(Input... inputs)
The array of Input objects describing the input streams used by the application.
|
SqlApplicationConfiguration.Builder |
outputs(Collection<Output> outputs)
The array of Output objects describing the destination streams used by the application.
|
SqlApplicationConfiguration.Builder |
outputs(Consumer<Output.Builder>... outputs)
The array of Output objects describing the destination streams used by the application.
|
SqlApplicationConfiguration.Builder |
outputs(Output... outputs)
The array of Output objects describing the destination streams used by the application.
|
SqlApplicationConfiguration.Builder |
referenceDataSources(Collection<ReferenceDataSource> referenceDataSources)
The array of ReferenceDataSource objects describing the reference data sources used by the
application.
|
SqlApplicationConfiguration.Builder |
referenceDataSources(Consumer<ReferenceDataSource.Builder>... referenceDataSources)
The array of ReferenceDataSource objects describing the reference data sources used by the
application.
|
SqlApplicationConfiguration.Builder |
referenceDataSources(ReferenceDataSource... referenceDataSources)
The array of ReferenceDataSource objects describing the reference data sources used by the
application.
|
copy
applyMutation, build
SqlApplicationConfiguration.Builder inputs(Collection<Input> inputs)
The array of Input objects describing the input streams used by the application.
inputs
- The array of Input objects describing the input streams used by the application.SqlApplicationConfiguration.Builder inputs(Input... inputs)
The array of Input objects describing the input streams used by the application.
inputs
- The array of Input objects describing the input streams used by the application.SqlApplicationConfiguration.Builder inputs(Consumer<Input.Builder>... inputs)
The array of Input objects describing the input streams used by the application.
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 #inputs(List)
.inputs
- a consumer that will call methods on List.Builder
#inputs(List)
SqlApplicationConfiguration.Builder outputs(Collection<Output> outputs)
The array of Output objects describing the destination streams used by the application.
outputs
- The array of Output objects describing the destination streams used by the application.SqlApplicationConfiguration.Builder outputs(Output... outputs)
The array of Output objects describing the destination streams used by the application.
outputs
- The array of Output objects describing the destination streams used by the application.SqlApplicationConfiguration.Builder outputs(Consumer<Output.Builder>... outputs)
The array of Output objects describing the destination streams used by the application.
This is a convenience that creates an instance of theList
avoiding the need to
create one manually via List
.
When the Consumer
completes, List
is called immediately and its
result is passed to #outputs(List
.outputs
- a consumer that will call methods on List
#outputs(List
SqlApplicationConfiguration.Builder referenceDataSources(Collection<ReferenceDataSource> referenceDataSources)
The array of ReferenceDataSource objects describing the reference data sources used by the application.
referenceDataSources
- The array of ReferenceDataSource objects describing the reference data sources used by the
application.SqlApplicationConfiguration.Builder referenceDataSources(ReferenceDataSource... referenceDataSources)
The array of ReferenceDataSource objects describing the reference data sources used by the application.
referenceDataSources
- The array of ReferenceDataSource objects describing the reference data sources used by the
application.SqlApplicationConfiguration.Builder referenceDataSources(Consumer<ReferenceDataSource.Builder>... referenceDataSources)
The array of ReferenceDataSource objects describing the reference data sources used by the application.
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 #referenceDataSources(List)
.referenceDataSources
- a consumer that will call methods on List.Builder
#referenceDataSources(List)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.