Class: Aws::KafkaConnect::Types::WorkerLogDeliveryDescription

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

Overview

Workers can send worker logs to different destination types. This configuration specifies the details of these destinations.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cloud_watch_logsTypes::CloudWatchLogsLogDeliveryDescription

Details about delivering logs to Amazon CloudWatch Logs.



2276
2277
2278
2279
2280
2281
2282
# File 'lib/aws-sdk-kafkaconnect/types.rb', line 2276

class WorkerLogDeliveryDescription < Struct.new(
  :cloud_watch_logs,
  :firehose,
  :s3)
  SENSITIVE = []
  include Aws::Structure
end

#firehoseTypes::FirehoseLogDeliveryDescription

Details about delivering logs to Amazon Kinesis Data Firehose.



2276
2277
2278
2279
2280
2281
2282
# File 'lib/aws-sdk-kafkaconnect/types.rb', line 2276

class WorkerLogDeliveryDescription < Struct.new(
  :cloud_watch_logs,
  :firehose,
  :s3)
  SENSITIVE = []
  include Aws::Structure
end

#s3Types::S3LogDeliveryDescription

Details about delivering logs to Amazon S3.



2276
2277
2278
2279
2280
2281
2282
# File 'lib/aws-sdk-kafkaconnect/types.rb', line 2276

class WorkerLogDeliveryDescription < Struct.new(
  :cloud_watch_logs,
  :firehose,
  :s3)
  SENSITIVE = []
  include Aws::Structure
end