Class: Aws::DocDB::Types::PendingCloudwatchLogsExports

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb

Overview

A list of the log types whose configuration is still pending. These log types are in the process of being activated or deactivated.

Constant Summary collapse

SENSITIVE =
[]

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 Amazon CloudWatch Logs.

Returns:

  • (Array<String>)


4744
4745
4746
4747
4748
4749
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 4744

class PendingCloudwatchLogsExports < Struct.new(
  :log_types_to_enable,
  :log_types_to_disable)
  SENSITIVE = []
  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>)


4744
4745
4746
4747
4748
4749
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 4744

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