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)


1745
1746
1747
1748
1749
1750
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 1745

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>)


1745
1746
1747
1748
1749
1750
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 1745

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