interface LogsBackupConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ObservabilityAdmin.Mixins.CfnOrganizationCentralizationRulePropsMixin.LogsBackupConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsobservabilityadmin/mixins#CfnOrganizationCentralizationRulePropsMixin_LogsBackupConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.observabilityadmin.mixins.CfnOrganizationCentralizationRulePropsMixin.LogsBackupConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_observabilityadmin.mixins.CfnOrganizationCentralizationRulePropsMixin.LogsBackupConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_observabilityadmin » mixins » CfnOrganizationCentralizationRulePropsMixin » 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 { mixins as observabilityadmin_mixins } from '@aws-cdk/mixins-preview/aws-observabilityadmin';
const logsBackupConfigurationProperty: observabilityadmin_mixins.CfnOrganizationCentralizationRulePropsMixin.LogsBackupConfigurationProperty = {
kmsKeyArn: 'kmsKeyArn',
region: 'region',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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? | 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.
region?
Type:
string
(optional)
Logs specific backup destination region within the primary destination account to which log data should be centralized.

.NET
Go
Java
Python
TypeScript