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

Class: Aws::KinesisAnalytics::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",
  role_arn: "RoleARN",
  input_starting_position_configuration: {
    input_starting_position: "NOW", # accepts NOW, TRIM_HORIZON, LAST_STOPPED_POINT
  },
  s3_configuration: {
    role_arn: "RoleARN", # required
    bucket_arn: "BucketARN", # required
    file_key: "FileKey", # required
  },
  input_processing_configuration: {
    input_lambda_processor: { # required
      resource_arn: "ResourceARN", # required
      role_arn: "RoleARN", # 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

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

Returns:

#resource_arnString

Amazon Resource Name (ARN) of the streaming source.

Returns:

  • (String)

    Amazon Resource Name (ARN) of the streaming source.

#role_arnString

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

Returns:

  • (String)

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

#s3_configurationTypes::S3Configuration

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

Returns: