Class: Aws::ConfigService::Types::RecordingModeOverride
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::RecordingModeOverride
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
An object for you to specify your overrides for the recording mode.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
A description that you provide for the override.
-
#recording_frequency ⇒ String
The recording frequency that will be applied to all the resource types specified in the override.
-
#resource_types ⇒ Array<String>
A comma-separated list that specifies which resource types Config includes in the override.
Instance Attribute Details
#description ⇒ String
A description that you provide for the override.
7473 7474 7475 7476 7477 7478 7479 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 7473 class RecordingModeOverride < Struct.new( :description, :resource_types, :recording_frequency) SENSITIVE = [] include Aws::Structure end |
#recording_frequency ⇒ String
The recording frequency that will be applied to all the resource types specified in the override.
Continuous recording allows you to record configuration changes continuously whenever a change occurs.
Daily recording allows you to receive a configuration item (CI) representing the most recent state of your resources over the last 24-hour period, only if it’s different from the previous CI recorded.
7473 7474 7475 7476 7477 7478 7479 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 7473 class RecordingModeOverride < Struct.new( :description, :resource_types, :recording_frequency) SENSITIVE = [] include Aws::Structure end |
#resource_types ⇒ Array<String>
A comma-separated list that specifies which resource types Config includes in the override.
Daily recording is not supported for the following resource types:
AWS::Config::ResourceCompliance
AWS::Config::ConformancePackCompliance
AWS::Config::ConfigurationRecorder
7473 7474 7475 7476 7477 7478 7479 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 7473 class RecordingModeOverride < Struct.new( :description, :resource_types, :recording_frequency) SENSITIVE = [] include Aws::Structure end |