Class: Aws::KinesisAnalyticsV2::Types::S3Configuration
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::S3Configuration
- Defined in:
- gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
Note:
When making an API call, you may pass S3Configuration data as a hash:
{
bucket_arn: "BucketARN", # required
file_key: "FileKey", # required
}
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
-
#bucket_arn ⇒ String
The ARN of the S3 bucket that contains the data.
-
#file_key ⇒ String
The name of the object that contains the data.
Instance Attribute Details
#bucket_arn ⇒ String
The ARN of the S3 bucket that contains the data.
4990 4991 4992 4993 4994 4995 |
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4990 class S3Configuration < Struct.new( :bucket_arn, :file_key) SENSITIVE = [] include Aws::Structure end |
#file_key ⇒ String
The name of the object that contains the data.
4990 4991 4992 4993 4994 4995 |
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4990 class S3Configuration < Struct.new( :bucket_arn, :file_key) SENSITIVE = [] include Aws::Structure end |