Class: Aws::ConfigService::Types::ConfigurationRecorderFilter

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

Overview

Filters configuration recorders by recording scope.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#filter_nameString

The name of the type of filter. Currently, only recordingScope is supported.

Returns:

  • (String)


1778
1779
1780
1781
1782
1783
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 1778

class ConfigurationRecorderFilter < Struct.new(
  :filter_name,
  :filter_value)
  SENSITIVE = []
  include Aws::Structure
end

#filter_valueArray<String>

The value of the filter. For recordingScope, valid values include: INTERNAL and PAID.

INTERNAL indicates that the ConfigurationItems in scope for the configuration recorder are recorded for free.

PAID indicates that the ConfigurationItems in scope for the configuration recorder impact the costs to your bill.

Returns:

  • (Array<String>)


1778
1779
1780
1781
1782
1783
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 1778

class ConfigurationRecorderFilter < Struct.new(
  :filter_name,
  :filter_value)
  SENSITIVE = []
  include Aws::Structure
end