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.
      4738 4739 4740 4741 4742 4743 4744  | 
    
      # File 'lib/aws-sdk-kafka/types.rb', line 4738 class S3 < Struct.new( :bucket, :enabled, :prefix) SENSITIVE = [] include Aws::Structure end  |