Class: Aws::Kafka::Types::S3Storage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::S3Storage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kafka/types.rb
Overview
Storage configuration for an Amazon S3 destination bucket.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket_arn ⇒ String
The Amazon Resource Name (ARN) of the destination Amazon S3 bucket.
-
#compression_type ⇒ String
The compression codec applied to delivered Amazon S3 objects.
-
#expected_bucket_owner ⇒ String
Optional 12-digit AWS account ID expected to own the Amazon S3 bucket.
-
#output_key_template ⇒ String
An optional template that controls the Amazon S3 object key for each delivered record.
-
#output_prefix ⇒ String
An optional prefix prepended to every Amazon S3 object key written by the channel.
-
#storage_class ⇒ String
The Amazon S3 storage class for delivered objects.
Instance Attribute Details
#bucket_arn ⇒ String
The Amazon Resource Name (ARN) of the destination Amazon S3 bucket.
5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 |
# File 'lib/aws-sdk-kafka/types.rb', line 5622 class S3Storage < Struct.new( :bucket_arn, :compression_type, :output_prefix, :output_key_template, :storage_class, :expected_bucket_owner) SENSITIVE = [] include Aws::Structure end |
#compression_type ⇒ String
The compression codec applied to delivered Amazon S3 objects.
5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 |
# File 'lib/aws-sdk-kafka/types.rb', line 5622 class S3Storage < Struct.new( :bucket_arn, :compression_type, :output_prefix, :output_key_template, :storage_class, :expected_bucket_owner) SENSITIVE = [] include Aws::Structure end |
#expected_bucket_owner ⇒ String
Optional 12-digit AWS account ID expected to own the Amazon S3 bucket.
5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 |
# File 'lib/aws-sdk-kafka/types.rb', line 5622 class S3Storage < Struct.new( :bucket_arn, :compression_type, :output_prefix, :output_key_template, :storage_class, :expected_bucket_owner) SENSITIVE = [] include Aws::Structure end |
#output_key_template ⇒ String
An optional template that controls the Amazon S3 object key for each delivered record. Supports the placeholders {partition-id}, {sequence-number}, and {kafka-offset}.
5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 |
# File 'lib/aws-sdk-kafka/types.rb', line 5622 class S3Storage < Struct.new( :bucket_arn, :compression_type, :output_prefix, :output_key_template, :storage_class, :expected_bucket_owner) SENSITIVE = [] include Aws::Structure end |
#output_prefix ⇒ String
An optional prefix prepended to every Amazon S3 object key written by the channel.
5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 |
# File 'lib/aws-sdk-kafka/types.rb', line 5622 class S3Storage < Struct.new( :bucket_arn, :compression_type, :output_prefix, :output_key_template, :storage_class, :expected_bucket_owner) SENSITIVE = [] include Aws::Structure end |
#storage_class ⇒ String
The Amazon S3 storage class for delivered objects.
5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 |
# File 'lib/aws-sdk-kafka/types.rb', line 5622 class S3Storage < Struct.new( :bucket_arn, :compression_type, :output_prefix, :output_key_template, :storage_class, :expected_bucket_owner) SENSITIVE = [] include Aws::Structure end |