Class: Aws::Kafka::Types::CloudWatchLogs

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-kafka/types.rb

Overview

Details of the CloudWatch Logs destination for broker logs.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enabledBoolean

Specifies whether broker logs get sent to the specified CloudWatch Logs destination.

Returns:

  • (Boolean)


305
306
307
308
309
310
# File 'lib/aws-sdk-kafka/types.rb', line 305

class CloudWatchLogs < Struct.new(
  :enabled,
  :log_group)
  SENSITIVE = []
  include Aws::Structure
end

#log_groupString

The CloudWatch log group that is the destination for broker logs.

Returns:

  • (String)


305
306
307
308
309
310
# File 'lib/aws-sdk-kafka/types.rb', line 305

class CloudWatchLogs < Struct.new(
  :enabled,
  :log_group)
  SENSITIVE = []
  include Aws::Structure
end