public static interface SqlApplicationConfigurationDescription.Builder extends SdkPojo, CopyableBuilder<SqlApplicationConfigurationDescription.Builder,SqlApplicationConfigurationDescription>
copy
applyMutation, build
SqlApplicationConfigurationDescription.Builder inputDescriptions(Collection<InputDescription> inputDescriptions)
The array of InputDescription objects describing the input streams used by the application.
inputDescriptions
- The array of InputDescription objects describing the input streams used by the application.SqlApplicationConfigurationDescription.Builder inputDescriptions(InputDescription... inputDescriptions)
The array of InputDescription objects describing the input streams used by the application.
inputDescriptions
- The array of InputDescription objects describing the input streams used by the application.SqlApplicationConfigurationDescription.Builder inputDescriptions(Consumer<InputDescription.Builder>... inputDescriptions)
The array of InputDescription 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 #inputDescriptions(List)
.inputDescriptions
- a consumer that will call methods on List.Builder
#inputDescriptions(List)
SqlApplicationConfigurationDescription.Builder outputDescriptions(Collection<OutputDescription> outputDescriptions)
The array of OutputDescription objects describing the destination streams used by the application.
outputDescriptions
- The array of OutputDescription objects describing the destination streams used by the
application.SqlApplicationConfigurationDescription.Builder outputDescriptions(OutputDescription... outputDescriptions)
The array of OutputDescription objects describing the destination streams used by the application.
outputDescriptions
- The array of OutputDescription objects describing the destination streams used by the
application.SqlApplicationConfigurationDescription.Builder outputDescriptions(Consumer<OutputDescription.Builder>... outputDescriptions)
The array of OutputDescription objects describing the destination 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 #outputDescriptions(List)
.outputDescriptions
- a consumer that will call methods on List.Builder
#outputDescriptions(List)
SqlApplicationConfigurationDescription.Builder referenceDataSourceDescriptions(Collection<ReferenceDataSourceDescription> referenceDataSourceDescriptions)
The array of ReferenceDataSourceDescription objects describing the reference data sources used by the application.
referenceDataSourceDescriptions
- The array of ReferenceDataSourceDescription objects describing the reference data sources used
by the application.SqlApplicationConfigurationDescription.Builder referenceDataSourceDescriptions(ReferenceDataSourceDescription... referenceDataSourceDescriptions)
The array of ReferenceDataSourceDescription objects describing the reference data sources used by the application.
referenceDataSourceDescriptions
- The array of ReferenceDataSourceDescription objects describing the reference data sources used
by the application.SqlApplicationConfigurationDescription.Builder referenceDataSourceDescriptions(Consumer<ReferenceDataSourceDescription.Builder>... referenceDataSourceDescriptions)
The array of ReferenceDataSourceDescription 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 #referenceDataSourceDescriptions(List)
.referenceDataSourceDescriptions
- a consumer that will call methods on List.Builder
#referenceDataSourceDescriptions(List)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.