Interface SqlApplicationConfigurationUpdate.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SqlApplicationConfigurationUpdate.Builder,SqlApplicationConfigurationUpdate>,SdkBuilder<SqlApplicationConfigurationUpdate.Builder,SqlApplicationConfigurationUpdate>,SdkPojo
- Enclosing class:
- SqlApplicationConfigurationUpdate
public static interface SqlApplicationConfigurationUpdate.Builder extends SdkPojo, CopyableBuilder<SqlApplicationConfigurationUpdate.Builder,SqlApplicationConfigurationUpdate>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SqlApplicationConfigurationUpdate.BuilderinputUpdates(Collection<InputUpdate> inputUpdates)The array of InputUpdate objects describing the new input streams used by the application.SqlApplicationConfigurationUpdate.BuilderinputUpdates(Consumer<InputUpdate.Builder>... inputUpdates)The array of InputUpdate objects describing the new input streams used by the application.SqlApplicationConfigurationUpdate.BuilderinputUpdates(InputUpdate... inputUpdates)The array of InputUpdate objects describing the new input streams used by the application.SqlApplicationConfigurationUpdate.BuilderoutputUpdates(Collection<OutputUpdate> outputUpdates)The array of OutputUpdate objects describing the new destination streams used by the application.SqlApplicationConfigurationUpdate.BuilderoutputUpdates(Consumer<OutputUpdate.Builder>... outputUpdates)The array of OutputUpdate objects describing the new destination streams used by the application.SqlApplicationConfigurationUpdate.BuilderoutputUpdates(OutputUpdate... outputUpdates)The array of OutputUpdate objects describing the new destination streams used by the application.SqlApplicationConfigurationUpdate.BuilderreferenceDataSourceUpdates(Collection<ReferenceDataSourceUpdate> referenceDataSourceUpdates)The array of ReferenceDataSourceUpdate objects describing the new reference data sources used by the application.SqlApplicationConfigurationUpdate.BuilderreferenceDataSourceUpdates(Consumer<ReferenceDataSourceUpdate.Builder>... referenceDataSourceUpdates)The array of ReferenceDataSourceUpdate objects describing the new reference data sources used by the application.SqlApplicationConfigurationUpdate.BuilderreferenceDataSourceUpdates(ReferenceDataSourceUpdate... referenceDataSourceUpdates)The array of ReferenceDataSourceUpdate objects describing the new 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
-
inputUpdates
SqlApplicationConfigurationUpdate.Builder inputUpdates(Collection<InputUpdate> inputUpdates)
The array of InputUpdate objects describing the new input streams used by the application.
- Parameters:
inputUpdates- The array of InputUpdate objects describing the new input streams used by the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputUpdates
SqlApplicationConfigurationUpdate.Builder inputUpdates(InputUpdate... inputUpdates)
The array of InputUpdate objects describing the new input streams used by the application.
- Parameters:
inputUpdates- The array of InputUpdate objects describing the new input streams used by the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputUpdates
SqlApplicationConfigurationUpdate.Builder inputUpdates(Consumer<InputUpdate.Builder>... inputUpdates)
The array of InputUpdate objects describing the new input streams used by the application.
This is a convenience method that creates an instance of theInputUpdate.Builderavoiding the need to create one manually viaInputUpdate.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#inputUpdates(List.) - Parameters:
inputUpdates- a consumer that will call methods onInputUpdate.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#inputUpdates(java.util.Collection)
-
outputUpdates
SqlApplicationConfigurationUpdate.Builder outputUpdates(Collection<OutputUpdate> outputUpdates)
The array of OutputUpdate objects describing the new destination streams used by the application.
- Parameters:
outputUpdates- The array of OutputUpdate objects describing the new destination streams used by the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputUpdates
SqlApplicationConfigurationUpdate.Builder outputUpdates(OutputUpdate... outputUpdates)
The array of OutputUpdate objects describing the new destination streams used by the application.
- Parameters:
outputUpdates- The array of OutputUpdate objects describing the new destination streams used by the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputUpdates
SqlApplicationConfigurationUpdate.Builder outputUpdates(Consumer<OutputUpdate.Builder>... outputUpdates)
The array of OutputUpdate objects describing the new destination streams used by the application.
This is a convenience method that creates an instance of theOutputUpdate.Builderavoiding the need to create one manually viaOutputUpdate.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#outputUpdates(List.) - Parameters:
outputUpdates- a consumer that will call methods onOutputUpdate.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#outputUpdates(java.util.Collection)
-
referenceDataSourceUpdates
SqlApplicationConfigurationUpdate.Builder referenceDataSourceUpdates(Collection<ReferenceDataSourceUpdate> referenceDataSourceUpdates)
The array of ReferenceDataSourceUpdate objects describing the new reference data sources used by the application.
- Parameters:
referenceDataSourceUpdates- The array of ReferenceDataSourceUpdate objects describing the new reference data sources used by the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
referenceDataSourceUpdates
SqlApplicationConfigurationUpdate.Builder referenceDataSourceUpdates(ReferenceDataSourceUpdate... referenceDataSourceUpdates)
The array of ReferenceDataSourceUpdate objects describing the new reference data sources used by the application.
- Parameters:
referenceDataSourceUpdates- The array of ReferenceDataSourceUpdate objects describing the new reference data sources used by the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
referenceDataSourceUpdates
SqlApplicationConfigurationUpdate.Builder referenceDataSourceUpdates(Consumer<ReferenceDataSourceUpdate.Builder>... referenceDataSourceUpdates)
The array of ReferenceDataSourceUpdate objects describing the new reference data sources used by the application.
This is a convenience method that creates an instance of theReferenceDataSourceUpdate.Builderavoiding the need to create one manually viaReferenceDataSourceUpdate.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#referenceDataSourceUpdates(List.) - Parameters:
referenceDataSourceUpdates- a consumer that will call methods onReferenceDataSourceUpdate.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#referenceDataSourceUpdates(java.util.Collection)
-
-