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

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

Instance Attribute Details

#bucketString

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

Returns:

  • (String)


4673
4674
4675
4676
4677
4678
4679
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 4673

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)


4673
4674
4675
4676
4677
4678
4679
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 4673

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)


4673
4674
4675
4676
4677
4678
4679
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 4673

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