Class: Aws::Kafka::Types::LoggingInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::LoggingInfo
- Defined in:
- gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb
Overview
Note:
When making an API call, you may pass LoggingInfo data as a hash:
{
broker_logs: { # required
cloud_watch_logs: {
enabled: false, # required
log_group: "__string",
},
firehose: {
delivery_stream: "__string",
enabled: false, # required
},
s3: {
bucket: "__string",
enabled: false, # required
prefix: "__string",
},
},
}
You can configure your MSK cluster to send broker logs to different destination types. This is a container for the configuration details related to broker logs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#broker_logs ⇒ Types::BrokerLogs
You can configure your MSK cluster to send broker logs to different destination types.
Instance Attribute Details
#broker_logs ⇒ Types::BrokerLogs
You can configure your MSK cluster to send broker logs to different destination types. This configuration specifies the details of these destinations.
2757 2758 2759 2760 2761 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2757 class LoggingInfo < Struct.new( :broker_logs) SENSITIVE = [] include Aws::Structure end |