Class: Aws::KinesisAnalyticsV2::Types::S3Configuration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb

Overview

For a SQL-based Kinesis Data Analytics application, provides a description of an Amazon S3 data source, including the Amazon Resource Name (ARN) of the S3 bucket and the name of the Amazon S3 object that contains the data.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_arnString

The ARN of the S3 bucket that contains the data.

Returns:

  • (String)


4095
4096
4097
4098
4099
4100
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4095

class S3Configuration < Struct.new(
  :bucket_arn,
  :file_key)
  SENSITIVE = []
  include Aws::Structure
end

#file_keyString

The name of the object that contains the data.

Returns:

  • (String)


4095
4096
4097
4098
4099
4100
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4095

class S3Configuration < Struct.new(
  :bucket_arn,
  :file_key)
  SENSITIVE = []
  include Aws::Structure
end