Interface CfnOrganizationCentralizationRule.CentralizationRuleSourceProperty

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

@Stability(Stable) public static interface CfnOrganizationCentralizationRule.CentralizationRuleSourceProperty extends software.amazon.jsii.JsiiSerializable
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.observabilityadmin.*;
 CentralizationRuleSourceProperty centralizationRuleSourceProperty = CentralizationRuleSourceProperty.builder()
         .regions(List.of("regions"))
         // the properties below are optional
         .scope("scope")
         .sourceLogsConfiguration(SourceLogsConfigurationProperty.builder()
                 .encryptedLogGroupStrategy("encryptedLogGroupStrategy")
                 .logGroupSelectionCriteria("logGroupSelectionCriteria")
                 .build())
         .build();
 

See Also: