Interface CfnConfigurationRecorderMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConfigurationRecorderMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:57.483Z") @Stability(Stable) public interface CfnConfigurationRecorderMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnConfigurationRecorderPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.config.*;
 CfnConfigurationRecorderMixinProps cfnConfigurationRecorderMixinProps = CfnConfigurationRecorderMixinProps.builder()
         .name("name")
         .recordingGroup(RecordingGroupProperty.builder()
                 .allSupported(false)
                 .exclusionByResourceTypes(ExclusionByResourceTypesProperty.builder()
                         .resourceTypes(List.of("resourceTypes"))
                         .build())
                 .includeGlobalResourceTypes(false)
                 .recordingStrategy(RecordingStrategyProperty.builder()
                         .useOnly("useOnly")
                         .build())
                 .resourceTypes(List.of("resourceTypes"))
                 .build())
         .recordingMode(RecordingModeProperty.builder()
                 .recordingFrequency("recordingFrequency")
                 .recordingModeOverrides(List.of(RecordingModeOverrideProperty.builder()
                         .description("description")
                         .recordingFrequency("recordingFrequency")
                         .resourceTypes(List.of("resourceTypes"))
                         .build()))
                 .build())
         .roleArn("roleArn")
         .build();
 

See Also: