interface LogsBackupConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ObservabilityAdmin.CfnOrganizationCentralizationRule.LogsBackupConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsobservabilityadmin#CfnOrganizationCentralizationRule_LogsBackupConfigurationProperty |
Java | software.amazon.awscdk.services.observabilityadmin.CfnOrganizationCentralizationRule.LogsBackupConfigurationProperty |
Python | aws_cdk.aws_observabilityadmin.CfnOrganizationCentralizationRule.LogsBackupConfigurationProperty |
TypeScript | aws-cdk-lib » aws_observabilityadmin » CfnOrganizationCentralizationRule » LogsBackupConfigurationProperty |
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 { aws_observabilityadmin as observabilityadmin } from 'aws-cdk-lib';
const logsBackupConfigurationProperty: observabilityadmin.CfnOrganizationCentralizationRule.LogsBackupConfigurationProperty = {
region: 'region',
// the properties below are optional
kmsKeyArn: 'kmsKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| region | string | Logs specific backup destination region within the primary destination account to which log data should be centralized. |
| kms | string | KMS Key ARN belonging to the primary destination account and backup region, to encrypt newly created central log groups in the backup destination. |
region
Type:
string
Logs specific backup destination region within the primary destination account to which log data should be centralized.
kmsKeyArn?
Type:
string
(optional)
KMS Key ARN belonging to the primary destination account and backup region, to encrypt newly created central log groups in the backup destination.

.NET
Go
Java
Python
TypeScript