Class: Aws::Kafka::Types::S3
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::S3
- Defined in:
- gems/aws-sdk-kafka/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.
3720 3721 3722 3723 3724 3725 3726 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 3720 class S3 < Struct.new( :bucket, :enabled, :prefix) SENSITIVE = [] include Aws::Structure end |