Class: Aws::RDS::Types::CloudwatchLogsExportConfiguration

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

Overview

Note:

When making an API call, you may pass CloudwatchLogsExportConfiguration data as a hash:

{
  enable_log_types: ["String"],
  disable_log_types: ["String"],
}

The configuration setting for the log types to be enabled for export to CloudWatch Logs for a specific DB instance or DB cluster.

Instance Attribute Summary collapse

Instance Attribute Details

#disable_log_typesArray<String>

The list of log types to disable.

Returns:

  • (Array<String>)


479
480
481
482
483
# File 'lib/aws-sdk-rds/types.rb', line 479

class CloudwatchLogsExportConfiguration < Struct.new(
  :enable_log_types,
  :disable_log_types)
  include Aws::Structure
end

#enable_log_typesArray<String>

The list of log types to enable.

Returns:

  • (Array<String>)


479
480
481
482
483
# File 'lib/aws-sdk-rds/types.rb', line 479

class CloudwatchLogsExportConfiguration < Struct.new(
  :enable_log_types,
  :disable_log_types)
  include Aws::Structure
end