Interface CfnOrganizationCentralizationRulePropsMixin.CentralizationRuleSourceProperty

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

@Stability(Stable) public static interface CfnOrganizationCentralizationRulePropsMixin.CentralizationRuleSourceProperty extends software.amazon.jsii.JsiiSerializable
Configuration specifying the source of telemetry data to be centralized.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.observabilityadmin.mixins.*;
 CentralizationRuleSourceProperty centralizationRuleSourceProperty = CentralizationRuleSourceProperty.builder()
         .regions(List.of("regions"))
         .scope("scope")
         .sourceLogsConfiguration(SourceLogsConfigurationProperty.builder()
                 .encryptedLogGroupStrategy("encryptedLogGroupStrategy")
                 .logGroupSelectionCriteria("logGroupSelectionCriteria")
                 .build())
         .build();
 

See Also: