Class: Aws::ConfigService::Types::ConfigurationRecorderFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::ConfigurationRecorderFilter
- 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
-
#filter_name ⇒ String
The name of the type of filter.
-
#filter_value ⇒ Array<String>
The value of the filter.
Instance Attribute Details
#filter_name ⇒ String
The name of the type of filter. Currently, only recordingScope
is
supported.
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_value ⇒ Array<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.
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 |