interface RecordingModeOverrideProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Config.CfnConfigurationRecorder.RecordingModeOverrideProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsconfig#CfnConfigurationRecorder_RecordingModeOverrideProperty |
![]() | software.amazon.awscdk.services.config.CfnConfigurationRecorder.RecordingModeOverrideProperty |
![]() | aws_cdk.aws_config.CfnConfigurationRecorder.RecordingModeOverrideProperty |
![]() | aws-cdk-lib » aws_config » CfnConfigurationRecorder » RecordingModeOverrideProperty |
An object for you to specify your overrides for the recording mode.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_config as config } from 'aws-cdk-lib';
const recordingModeOverrideProperty: config.CfnConfigurationRecorder.RecordingModeOverrideProperty = {
recordingFrequency: 'recordingFrequency',
resourceTypes: ['resourceTypes'],
// the properties below are optional
description: 'description',
};
Properties
Name | Type | Description |
---|---|---|
recording | string | The recording frequency that will be applied to all the resource types specified in the override. |
resource | string[] | A comma-separated list that specifies which resource types AWS Config includes in the override. |
description? | string | A description that you provide for the override. |
recordingFrequency
Type:
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.
AWS Firewall Manager depends on continuous recording to monitor your resources. If you are using Firewall Manager, it is recommended that you set the recording frequency to Continuous.
resourceTypes
Type:
string[]
A comma-separated list that specifies which resource types AWS Config includes in the override.
Daily recording cannot be specified for the following resource types:
AWS::Config::ResourceCompliance
AWS::Config::ConformancePackCompliance
AWS::Config::ConfigurationRecorder
description?
Type:
string
(optional)
A description that you provide for the override.