Struct rusoto_kinesisanalytics::DiscoverInputSchemaResponse [] [src]

pub struct DiscoverInputSchemaResponse {
    pub input_schema: Option<SourceSchema>,
    pub parsed_input_records: Option<Vec<Vec<String>>>,
    pub processed_input_records: Option<Vec<String>>,
    pub raw_input_records: Option<Vec<String>>,
}

Fields

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.

An array of elements, where each element corresponds to a row in a stream record (a stream record can have more than one row).

Stream data that was modified by the processor specified in the InputProcessingConfiguration parameter.

Raw stream data that was sampled to infer the schema.

Trait Implementations

impl Default for DiscoverInputSchemaResponse
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for DiscoverInputSchemaResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DiscoverInputSchemaResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations