Class: Aws::Kafka::Types::S3

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#bucketString

The name of the S3 bucket that is the destination for broker logs.

Returns:

  • (String)


4716
4717
4718
4719
4720
4721
4722
# File 'lib/aws-sdk-kafka/types.rb', line 4716

class S3 < Struct.new(
  :bucket,
  :enabled,
  :prefix)
  SENSITIVE = []
  include Aws::Structure
end

#enabledBoolean

Specifies whether broker logs get sent to the specified Amazon S3 destination.

Returns:

  • (Boolean)


4716
4717
4718
4719
4720
4721
4722
# File 'lib/aws-sdk-kafka/types.rb', line 4716

class S3 < Struct.new(
  :bucket,
  :enabled,
  :prefix)
  SENSITIVE = []
  include Aws::Structure
end

#prefixString

The S3 prefix that is the destination for broker logs.

Returns:

  • (String)


4716
4717
4718
4719
4720
4721
4722
# File 'lib/aws-sdk-kafka/types.rb', line 4716

class S3 < Struct.new(
  :bucket,
  :enabled,
  :prefix)
  SENSITIVE = []
  include Aws::Structure
end