Interface CfnOrganizationCentralizationRule.LogsBackupConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOrganizationCentralizationRule.LogsBackupConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnOrganizationCentralizationRule
@Stability(Stable)
public static interface CfnOrganizationCentralizationRule.LogsBackupConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration for backing up centralized log data to a secondary region.
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.*;
LogsBackupConfigurationProperty logsBackupConfigurationProperty = LogsBackupConfigurationProperty.builder()
.region("region")
// the properties below are optional
.kmsKeyArn("kmsKeyArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnOrganizationCentralizationRule.LogsBackupConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringKMS Key ARN belonging to the primary destination account and backup region, to encrypt newly created central log groups in the backup destination.Logs specific backup destination region within the primary destination account to which log data should be centralized.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRegion
Logs specific backup destination region within the primary destination account to which log data should be centralized.- See Also:
-
getKmsKeyArn
KMS Key ARN belonging to the primary destination account and backup region, to encrypt newly created central log groups in the backup destination.- See Also:
-
builder
@Stability(Stable) static CfnOrganizationCentralizationRule.LogsBackupConfigurationProperty.Builder builder()
-