CopyableBuilder<DiscoverInputSchemaResponse.Builder,DiscoverInputSchemaResponse>
, SdkBuilder<DiscoverInputSchemaResponse.Builder,DiscoverInputSchemaResponse>
public static interface DiscoverInputSchemaResponse.Builder extends CopyableBuilder<DiscoverInputSchemaResponse.Builder,DiscoverInputSchemaResponse>
Modifier and Type | Method | Description |
---|---|---|
DiscoverInputSchemaResponse.Builder |
inputSchema(SourceSchema inputSchema) |
Schema inferred from the streaming source.
|
DiscoverInputSchemaResponse.Builder |
parsedInputRecords(Collection<? extends Collection<String>> parsedInputRecords) |
An array of elements, where each element corresponds to a row in a stream record (a stream record can have
more than one row).
|
DiscoverInputSchemaResponse.Builder |
parsedInputRecords(Collection<String>... parsedInputRecords) |
An array of elements, where each element corresponds to a row in a stream record (a stream record can have
more than one row).
|
DiscoverInputSchemaResponse.Builder |
rawInputRecords(String... rawInputRecords) |
Raw stream data that was sampled to infer the schema.
|
DiscoverInputSchemaResponse.Builder |
rawInputRecords(Collection<String> rawInputRecords) |
Raw stream data that was sampled to infer the schema.
|
copy
apply, build
DiscoverInputSchemaResponse.Builder inputSchema(SourceSchema inputSchema)
Schema inferred from the streaming source. It identifies the format of the data in the streaming source and how each data element maps to corresponding columns in the in-application stream that you can create.
inputSchema
- Schema inferred from the streaming source. It identifies the format of the data in the streaming
source and how each data element maps to corresponding columns in the in-application stream that you
can create.DiscoverInputSchemaResponse.Builder parsedInputRecords(Collection<? extends Collection<String>> parsedInputRecords)
An array of elements, where each element corresponds to a row in a stream record (a stream record can have more than one row).
parsedInputRecords
- An array of elements, where each element corresponds to a row in a stream record (a stream record can
have more than one row).DiscoverInputSchemaResponse.Builder parsedInputRecords(Collection<String>... parsedInputRecords)
An array of elements, where each element corresponds to a row in a stream record (a stream record can have more than one row).
NOTE: This method appends the values to the existing list (if any). Use
#setParsedInputRecords(java.util.Collection)
or #withParsedInputRecords(java.util.Collection)
if you want to override the existing values.
parsedInputRecords
- An array of elements, where each element corresponds to a row in a stream record (a stream record can
have more than one row).DiscoverInputSchemaResponse.Builder rawInputRecords(Collection<String> rawInputRecords)
Raw stream data that was sampled to infer the schema.
rawInputRecords
- Raw stream data that was sampled to infer the schema.DiscoverInputSchemaResponse.Builder rawInputRecords(String... rawInputRecords)
Raw stream data that was sampled to infer the schema.
NOTE: This method appends the values to the existing list (if any). Use
#setRawInputRecords(java.util.Collection)
or #withRawInputRecords(java.util.Collection)
if
you want to override the existing values.
rawInputRecords
- Raw stream data that was sampled to infer the schema.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.