Class: Aws::Kafka::Types::S3
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::S3
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kafka/types.rb
Overview
The details of the Amazon S3 destination for broker logs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The name of the S3 bucket that is the destination for broker logs.
-
#enabled ⇒ Boolean
Specifies whether broker logs get sent to the specified Amazon S3 destination.
-
#prefix ⇒ String
The S3 prefix that is the destination for broker logs.
Instance Attribute Details
#bucket ⇒ String
The name of the S3 bucket that is the destination for broker logs.
5663 5664 5665 5666 5667 5668 5669 |
# File 'lib/aws-sdk-kafka/types.rb', line 5663 class S3 < Struct.new( :bucket, :enabled, :prefix) SENSITIVE = [] include Aws::Structure end |