public static interface Input.Builder extends SdkPojo, CopyableBuilder<Input.Builder,Input>
Modifier and Type | Method and Description |
---|---|
default Input.Builder |
inputParallelism(Consumer<InputParallelism.Builder> inputParallelism)
Describes the number of in-application streams to create.
|
Input.Builder |
inputParallelism(InputParallelism inputParallelism)
Describes the number of in-application streams to create.
|
default Input.Builder |
inputProcessingConfiguration(Consumer<InputProcessingConfiguration.Builder> inputProcessingConfiguration)
The InputProcessingConfiguration for the input.
|
Input.Builder |
inputProcessingConfiguration(InputProcessingConfiguration inputProcessingConfiguration)
The InputProcessingConfiguration for the input.
|
default Input.Builder |
inputSchema(Consumer<SourceSchema.Builder> inputSchema)
Describes the format of the data in the streaming source, and how each data element maps to corresponding
columns in the in-application stream that is being created.
|
Input.Builder |
inputSchema(SourceSchema inputSchema)
Describes the format of the data in the streaming source, and how each data element maps to corresponding
columns in the in-application stream that is being created.
|
default Input.Builder |
kinesisFirehoseInput(Consumer<KinesisFirehoseInput.Builder> kinesisFirehoseInput)
If the streaming source is an Amazon Kinesis Data Firehose delivery stream, identifies the delivery stream's
ARN.
|
Input.Builder |
kinesisFirehoseInput(KinesisFirehoseInput kinesisFirehoseInput)
If the streaming source is an Amazon Kinesis Data Firehose delivery stream, identifies the delivery stream's
ARN.
|
default Input.Builder |
kinesisStreamsInput(Consumer<KinesisStreamsInput.Builder> kinesisStreamsInput)
If the streaming source is an Amazon Kinesis data stream, identifies the stream's Amazon Resource Name (ARN).
|
Input.Builder |
kinesisStreamsInput(KinesisStreamsInput kinesisStreamsInput)
If the streaming source is an Amazon Kinesis data stream, identifies the stream's Amazon Resource Name (ARN).
|
Input.Builder |
namePrefix(String namePrefix)
The name prefix to use when creating an in-application stream.
|
copy
applyMutation, build
Input.Builder namePrefix(String namePrefix)
The name prefix to use when creating an in-application stream. Suppose that you specify a prefix "
MyInApplicationStream
." Kinesis Data Analytics then creates one or more (as per the
InputParallelism
count you specified) in-application streams with the names "
MyInApplicationStream_001
," "MyInApplicationStream_002
," and so on.
namePrefix
- The name prefix to use when creating an in-application stream. Suppose that you specify a prefix "
MyInApplicationStream
." Kinesis Data Analytics then creates one or more (as per the
InputParallelism
count you specified) in-application streams with the names "
MyInApplicationStream_001
," "MyInApplicationStream_002
," and so on.Input.Builder inputProcessingConfiguration(InputProcessingConfiguration inputProcessingConfiguration)
The InputProcessingConfiguration for the input. An input processor transforms records as they are received from the stream, before the application's SQL code executes. Currently, the only input processing configuration available is InputLambdaProcessor.
inputProcessingConfiguration
- The InputProcessingConfiguration for the input. An input processor transforms records as they
are received from the stream, before the application's SQL code executes. Currently, the only input
processing configuration available is InputLambdaProcessor.default Input.Builder inputProcessingConfiguration(Consumer<InputProcessingConfiguration.Builder> inputProcessingConfiguration)
The InputProcessingConfiguration for the input. An input processor transforms records as they are received from the stream, before the application's SQL code executes. Currently, the only input processing configuration available is InputLambdaProcessor.
This is a convenience that creates an instance of theInputProcessingConfiguration.Builder
avoiding
the need to create one manually via InputProcessingConfiguration.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called
immediately and its result is passed to inputProcessingConfiguration(InputProcessingConfiguration)
.inputProcessingConfiguration
- a consumer that will call methods on InputProcessingConfiguration.Builder
inputProcessingConfiguration(InputProcessingConfiguration)
Input.Builder kinesisStreamsInput(KinesisStreamsInput kinesisStreamsInput)
If the streaming source is an Amazon Kinesis data stream, identifies the stream's Amazon Resource Name (ARN).
kinesisStreamsInput
- If the streaming source is an Amazon Kinesis data stream, identifies the stream's Amazon Resource Name
(ARN).default Input.Builder kinesisStreamsInput(Consumer<KinesisStreamsInput.Builder> kinesisStreamsInput)
If the streaming source is an Amazon Kinesis data stream, identifies the stream's Amazon Resource Name (ARN).
This is a convenience that creates an instance of theKinesisStreamsInput.Builder
avoiding the need
to create one manually via KinesisStreamsInput.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and
its result is passed to kinesisStreamsInput(KinesisStreamsInput)
.kinesisStreamsInput
- a consumer that will call methods on KinesisStreamsInput.Builder
kinesisStreamsInput(KinesisStreamsInput)
Input.Builder kinesisFirehoseInput(KinesisFirehoseInput kinesisFirehoseInput)
If the streaming source is an Amazon Kinesis Data Firehose delivery stream, identifies the delivery stream's ARN.
kinesisFirehoseInput
- If the streaming source is an Amazon Kinesis Data Firehose delivery stream, identifies the delivery
stream's ARN.default Input.Builder kinesisFirehoseInput(Consumer<KinesisFirehoseInput.Builder> kinesisFirehoseInput)
If the streaming source is an Amazon Kinesis Data Firehose delivery stream, identifies the delivery stream's ARN.
This is a convenience that creates an instance of theKinesisFirehoseInput.Builder
avoiding the need
to create one manually via KinesisFirehoseInput.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and
its result is passed to kinesisFirehoseInput(KinesisFirehoseInput)
.kinesisFirehoseInput
- a consumer that will call methods on KinesisFirehoseInput.Builder
kinesisFirehoseInput(KinesisFirehoseInput)
Input.Builder inputParallelism(InputParallelism inputParallelism)
Describes the number of in-application streams to create.
inputParallelism
- Describes the number of in-application streams to create.default Input.Builder inputParallelism(Consumer<InputParallelism.Builder> inputParallelism)
Describes the number of in-application streams to create.
This is a convenience that creates an instance of theInputParallelism.Builder
avoiding the need to
create one manually via InputParallelism.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to inputParallelism(InputParallelism)
.inputParallelism
- a consumer that will call methods on InputParallelism.Builder
inputParallelism(InputParallelism)
Input.Builder inputSchema(SourceSchema inputSchema)
Describes the format of the data in the streaming source, and how each data element maps to corresponding columns in the in-application stream that is being created.
Also used to describe the format of the reference data source.
inputSchema
- Describes the format of the data in the streaming source, and how each data element maps to
corresponding columns in the in-application stream that is being created.
Also used to describe the format of the reference data source.
default Input.Builder inputSchema(Consumer<SourceSchema.Builder> inputSchema)
Describes the format of the data in the streaming source, and how each data element maps to corresponding columns in the in-application stream that is being created.
Also used to describe the format of the reference data source.
This is a convenience that creates an instance of theSourceSchema.Builder
avoiding the need to
create one manually via SourceSchema.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to inputSchema(SourceSchema)
.inputSchema
- a consumer that will call methods on SourceSchema.Builder
inputSchema(SourceSchema)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.