Class: Aws::KafkaConnect::Types::WorkerLogDelivery

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kafkaconnect/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::CloudWatchLogsLogDelivery

Details about delivering logs to Amazon CloudWatch Logs.



2064
2065
2066
2067
2068
2069
2070
# File 'gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb', line 2064

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

#firehoseTypes::FirehoseLogDelivery

Details about delivering logs to Amazon Kinesis Data Firehose.



2064
2065
2066
2067
2068
2069
2070
# File 'gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb', line 2064

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

#s3Types::S3LogDelivery

Details about delivering logs to Amazon S3.



2064
2065
2066
2067
2068
2069
2070
# File 'gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb', line 2064

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