Class: Aws::RDS::Types::PendingCloudwatchLogsExports

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

Overview

A list of the log types whose configuration is still pending. In other words, these log types are in the process of being activated or deactivated.

Instance Attribute Summary collapse

Instance Attribute Details

#log_types_to_disableArray<String>

Log types that are in the process of being enabled. After they are enabled, these log types are exported to CloudWatch Logs.

Returns:

  • (Array<String>)


11865
11866
11867
11868
11869
# File 'lib/aws-sdk-rds/types.rb', line 11865

class PendingCloudwatchLogsExports < Struct.new(
  :log_types_to_enable,
  :log_types_to_disable)
  include Aws::Structure
end

#log_types_to_enableArray<String>

Log types that are in the process of being deactivated. After they are deactivated, these log types aren’t exported to CloudWatch Logs.

Returns:

  • (Array<String>)


11865
11866
11867
11868
11869
# File 'lib/aws-sdk-rds/types.rb', line 11865

class PendingCloudwatchLogsExports < Struct.new(
  :log_types_to_enable,
  :log_types_to_disable)
  include Aws::Structure
end