Interface CfnOrganizationCentralizationRule.DestinationLogsConfigurationProperty

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

@Stability(Stable) public static interface CfnOrganizationCentralizationRule.DestinationLogsConfigurationProperty 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.*;
 DestinationLogsConfigurationProperty destinationLogsConfigurationProperty = DestinationLogsConfigurationProperty.builder()
         .backupConfiguration(LogsBackupConfigurationProperty.builder()
                 .region("region")
                 // the properties below are optional
                 .kmsKeyArn("kmsKeyArn")
                 .build())
         .logsEncryptionConfiguration(LogsEncryptionConfigurationProperty.builder()
                 .encryptionStrategy("encryptionStrategy")
                 // the properties below are optional
                 .encryptionConflictResolutionStrategy("encryptionConflictResolutionStrategy")
                 .kmsKeyArn("kmsKeyArn")
                 .build())
         .build();
 

See Also: