Interface CfnOrganizationCentralizationRule.CentralizationRuleProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOrganizationCentralizationRule.CentralizationRuleProperty.Jsii$Proxy
- Enclosing class:
CfnOrganizationCentralizationRule
@Stability(Stable)
public static interface CfnOrganizationCentralizationRule.CentralizationRuleProperty
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.*; CentralizationRuleProperty centralizationRuleProperty = CentralizationRuleProperty.builder() .destination(CentralizationRuleDestinationProperty.builder() .region("region") // the properties below are optional .account("account") .destinationLogsConfiguration(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()) .build()) .source(CentralizationRuleSourceProperty.builder() .regions(List.of("regions")) // the properties below are optional .scope("scope") .sourceLogsConfiguration(SourceLogsConfigurationProperty.builder() .encryptedLogGroupStrategy("encryptedLogGroupStrategy") .logGroupSelectionCriteria("logGroupSelectionCriteria") .build()) .build()) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnOrganizationCentralizationRule.CentralizationRuleProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestination
- See Also:
-
getSource
- See Also:
-
builder
@Stability(Stable) static CfnOrganizationCentralizationRule.CentralizationRuleProperty.Builder builder()
-