Interface SqlApplicationConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SqlApplicationConfiguration.Builder,SqlApplicationConfiguration>,SdkBuilder<SqlApplicationConfiguration.Builder,SqlApplicationConfiguration>,SdkPojo
- Enclosing class:
- SqlApplicationConfiguration
public static interface SqlApplicationConfiguration.Builder extends SdkPojo, CopyableBuilder<SqlApplicationConfiguration.Builder,SqlApplicationConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SqlApplicationConfiguration.Builderinputs(Collection<Input> inputs)The array of Input objects describing the input streams used by the application.SqlApplicationConfiguration.Builderinputs(Consumer<Input.Builder>... inputs)The array of Input objects describing the input streams used by the application.SqlApplicationConfiguration.Builderinputs(Input... inputs)The array of Input objects describing the input streams used by the application.SqlApplicationConfiguration.Builderoutputs(Collection<Output> outputs)The array of Output objects describing the destination streams used by the application.SqlApplicationConfiguration.Builderoutputs(Consumer<Output.Builder>... outputs)The array of Output objects describing the destination streams used by the application.SqlApplicationConfiguration.Builderoutputs(Output... outputs)The array of Output objects describing the destination streams used by the application.SqlApplicationConfiguration.BuilderreferenceDataSources(Collection<ReferenceDataSource> referenceDataSources)The array of ReferenceDataSource objects describing the reference data sources used by the application.SqlApplicationConfiguration.BuilderreferenceDataSources(Consumer<ReferenceDataSource.Builder>... referenceDataSources)The array of ReferenceDataSource objects describing the reference data sources used by the application.SqlApplicationConfiguration.BuilderreferenceDataSources(ReferenceDataSource... referenceDataSources)The array of ReferenceDataSource objects describing the reference data sources used by the application.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
inputs
SqlApplicationConfiguration.Builder inputs(Collection<Input> inputs)
The array of Input objects describing the input streams used by the application.
- Parameters:
inputs- The array of Input objects describing the input streams used by the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputs
SqlApplicationConfiguration.Builder inputs(Input... inputs)
The array of Input objects describing the input streams used by the application.
- Parameters:
inputs- The array of Input objects describing the input streams used by the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputs
SqlApplicationConfiguration.Builder inputs(Consumer<Input.Builder>... inputs)
The array of Input objects describing the input streams used by the application.
This is a convenience method that creates an instance of theInput.Builderavoiding the need to create one manually viaInput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#inputs(List).- Parameters:
inputs- a consumer that will call methods onInput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#inputs(java.util.Collection)
-
outputs
SqlApplicationConfiguration.Builder outputs(Collection<Output> outputs)
The array of Output objects describing the destination streams used by the application.
- Parameters:
outputs- The array of Output objects describing the destination streams used by the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputs
SqlApplicationConfiguration.Builder outputs(Output... outputs)
The array of Output objects describing the destination streams used by the application.
- Parameters:
outputs- The array of Output objects describing the destination streams used by the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputs
SqlApplicationConfiguration.Builder outputs(Consumer<Output.Builder>... outputs)
The array of Output objects describing the destination streams used by the application.
This is a convenience method that creates an instance of theOutput.Builderavoiding the need to create one manually viaOutput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#outputs(List.- Parameters:
outputs- a consumer that will call methods onOutput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#outputs(java.util.Collection
-
referenceDataSources
SqlApplicationConfiguration.Builder referenceDataSources(Collection<ReferenceDataSource> referenceDataSources)
The array of ReferenceDataSource objects describing the reference data sources used by the application.
- Parameters:
referenceDataSources- The array of ReferenceDataSource objects describing the reference data sources used by the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
referenceDataSources
SqlApplicationConfiguration.Builder referenceDataSources(ReferenceDataSource... referenceDataSources)
The array of ReferenceDataSource objects describing the reference data sources used by the application.
- Parameters:
referenceDataSources- The array of ReferenceDataSource objects describing the reference data sources used by the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
referenceDataSources
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 method that creates an instance of theReferenceDataSource.Builderavoiding the need to create one manually viaReferenceDataSource.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#referenceDataSources(List.) - Parameters:
referenceDataSources- a consumer that will call methods onReferenceDataSource.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#referenceDataSources(java.util.Collection)
-
-