@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class DiscoverInputSchemaResult extends AmazonWebServiceResult<ResponseMetadata> implements Serializable, Cloneable
Constructor and Description |
---|
DiscoverInputSchemaResult() |
Modifier and Type | Method and Description |
---|---|
DiscoverInputSchemaResult |
clone() |
boolean |
equals(Object obj) |
SourceSchema |
getInputSchema()
Schema inferred from the streaming source.
|
List<List<String>> |
getParsedInputRecords()
An array of elements, where each element corresponds to a row in a stream record (a stream record can have more
than one row).
|
List<String> |
getProcessedInputRecords()
Stream data that was modified by the processor specified in the
InputProcessingConfiguration
parameter. |
List<String> |
getRawInputRecords()
Raw stream data that was sampled to infer the schema.
|
int |
hashCode() |
void |
setInputSchema(SourceSchema inputSchema)
Schema inferred from the streaming source.
|
void |
setParsedInputRecords(Collection<List<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).
|
void |
setProcessedInputRecords(Collection<String> processedInputRecords)
Stream data that was modified by the processor specified in the
InputProcessingConfiguration
parameter. |
void |
setRawInputRecords(Collection<String> rawInputRecords)
Raw stream data that was sampled to infer the schema.
|
String |
toString()
Returns a string representation of this object.
|
DiscoverInputSchemaResult |
withInputSchema(SourceSchema inputSchema)
Schema inferred from the streaming source.
|
DiscoverInputSchemaResult |
withParsedInputRecords(Collection<List<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).
|
DiscoverInputSchemaResult |
withParsedInputRecords(List<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).
|
DiscoverInputSchemaResult |
withProcessedInputRecords(Collection<String> processedInputRecords)
Stream data that was modified by the processor specified in the
InputProcessingConfiguration
parameter. |
DiscoverInputSchemaResult |
withProcessedInputRecords(String... processedInputRecords)
Stream data that was modified by the processor specified in the
InputProcessingConfiguration
parameter. |
DiscoverInputSchemaResult |
withRawInputRecords(Collection<String> rawInputRecords)
Raw stream data that was sampled to infer the schema.
|
DiscoverInputSchemaResult |
withRawInputRecords(String... rawInputRecords)
Raw stream data that was sampled to infer the schema.
|
getSdkHttpMetadata, getSdkResponseMetadata, setSdkHttpMetadata, setSdkResponseMetadata
public void setInputSchema(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.public SourceSchema getInputSchema()
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.
public DiscoverInputSchemaResult withInputSchema(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.public List<List<String>> getParsedInputRecords()
An array of elements, where each element corresponds to a row in a stream record (a stream record can have more than one row).
public void setParsedInputRecords(Collection<List<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).public DiscoverInputSchemaResult withParsedInputRecords(List<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).public DiscoverInputSchemaResult withParsedInputRecords(Collection<List<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).public List<String> getProcessedInputRecords()
Stream data that was modified by the processor specified in the InputProcessingConfiguration
parameter.
InputProcessingConfiguration
parameter.public void setProcessedInputRecords(Collection<String> processedInputRecords)
Stream data that was modified by the processor specified in the InputProcessingConfiguration
parameter.
processedInputRecords
- Stream data that was modified by the processor specified in the InputProcessingConfiguration
parameter.public DiscoverInputSchemaResult withProcessedInputRecords(String... processedInputRecords)
Stream data that was modified by the processor specified in the InputProcessingConfiguration
parameter.
NOTE: This method appends the values to the existing list (if any). Use
setProcessedInputRecords(java.util.Collection)
or
withProcessedInputRecords(java.util.Collection)
if you want to override the existing values.
processedInputRecords
- Stream data that was modified by the processor specified in the InputProcessingConfiguration
parameter.public DiscoverInputSchemaResult withProcessedInputRecords(Collection<String> processedInputRecords)
Stream data that was modified by the processor specified in the InputProcessingConfiguration
parameter.
processedInputRecords
- Stream data that was modified by the processor specified in the InputProcessingConfiguration
parameter.public List<String> getRawInputRecords()
Raw stream data that was sampled to infer the schema.
public void setRawInputRecords(Collection<String> rawInputRecords)
Raw stream data that was sampled to infer the schema.
rawInputRecords
- Raw stream data that was sampled to infer the schema.public DiscoverInputSchemaResult withRawInputRecords(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.public DiscoverInputSchemaResult withRawInputRecords(Collection<String> rawInputRecords)
Raw stream data that was sampled to infer the schema.
rawInputRecords
- Raw stream data that was sampled to infer the schema.public String toString()
toString
in class Object
Object.toString()
public DiscoverInputSchemaResult clone()
Copyright © 2019. All rights reserved.