Struct rusoto_kinesisanalytics::DiscoverInputSchemaRequest[][src]

pub struct DiscoverInputSchemaRequest {
    pub input_processing_configuration: Option<InputProcessingConfiguration>,
    pub input_starting_position_configuration: Option<InputStartingPositionConfiguration>,
    pub resource_arn: Option<String>,
    pub role_arn: Option<String>,
    pub s3_configuration: Option<S3Configuration>,
}

Fields

The InputProcessingConfiguration to use to preprocess the records before discovering the schema of the records.

Point at which you want Amazon Kinesis Analytics to start reading records from the specified streaming source discovery purposes.

Amazon Resource Name (ARN) of the streaming source.

ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf.

Specify this parameter to discover a schema from data in an S3 object.

Trait Implementations

impl Default for DiscoverInputSchemaRequest
[src]

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

impl Debug for DiscoverInputSchemaRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DiscoverInputSchemaRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DiscoverInputSchemaRequest
[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