Struct rusoto_kinesisanalytics::RecordFormat[][src]

pub struct RecordFormat {
    pub mapping_parameters: Option<MappingParameters>,
    pub record_format_type: String,
}

Describes the record format and relevant mapping information that should be applied to schematize the records on the stream.

Fields

When configuring application input at the time of creating or updating an application, provides additional mapping information specific to the record format (such as JSON, CSV, or record fields delimited by some delimiter) on the streaming source.

The type of record format.

Trait Implementations

impl Default for RecordFormat
[src]

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

impl Debug for RecordFormat
[src]

Formats the value using the given formatter. Read more

impl Clone for RecordFormat
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RecordFormat
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations