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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


4415
4416
4417
4418
4419
4420
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4415

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)


4415
4416
4417
4418
4419
4420
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4415

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