You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::KinesisAnalyticsV2::Types::DiscoverInputSchemaRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DiscoverInputSchemaRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  resource_arn: "ResourceARN",
  service_execution_role: "RoleARN", # required
  input_starting_position_configuration: {
    input_starting_position: "NOW", # accepts NOW, TRIM_HORIZON, LAST_STOPPED_POINT
  },
  s3_configuration: {
    bucket_arn: "BucketARN", # required
    file_key: "FileKey", # required
  },
  input_processing_configuration: {
    input_lambda_processor: { # required
      resource_arn: "ResourceARN", # required
    },
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#input_processing_configurationTypes::InputProcessingConfiguration

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

Returns:

#input_starting_position_configurationTypes::InputStartingPositionConfiguration

The point at which you want Kinesis Data Analytics to start reading records from the specified streaming source discovery purposes.

Returns:

#resource_arnString

The Amazon Resource Name (ARN) of the streaming source.

Returns:

  • (String)

    The Amazon Resource Name (ARN) of the streaming source.

#s3_configurationTypes::S3Configuration

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

Returns:

#service_execution_roleString

The ARN of the role that is used to access the streaming source.

Returns:

  • (String)

    The ARN of the role that is used to access the streaming source.