Class: Aws::KafkaConnect::Types::CloudWatchLogsLogDelivery

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb

Overview

The settings for delivering connector logs to Amazon CloudWatch Logs.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enabledBoolean

Whether log delivery to Amazon CloudWatch Logs is enabled.

Returns:

  • (Boolean)


246
247
248
249
250
251
# File 'gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb', line 246

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

#log_groupString

The name of the CloudWatch log group that is the destination for log delivery.

Returns:

  • (String)


246
247
248
249
250
251
# File 'gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb', line 246

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