Interface CfnConfigurationRecorder.RecordingModeOverrideProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConfigurationRecorder.RecordingModeOverrideProperty.Jsii$Proxy
Enclosing class:
CfnConfigurationRecorder

@Stability(Stable) public static interface CfnConfigurationRecorder.RecordingModeOverrideProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.config.*;
 RecordingModeOverrideProperty recordingModeOverrideProperty = RecordingModeOverrideProperty.builder()
         .recordingFrequency("recordingFrequency")
         .resourceTypes(List.of("resourceTypes"))
         // the properties below are optional
         .description("description")
         .build();
 

See Also: