interface LogsBackupConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ObservabilityAdmin.CfnOrganizationCentralizationRulePropsMixin.LogsBackupConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsobservabilityadmin#CfnOrganizationCentralizationRulePropsMixin_LogsBackupConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.observabilityadmin.CfnOrganizationCentralizationRulePropsMixin.LogsBackupConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_observabilityadmin.CfnOrganizationCentralizationRulePropsMixin.LogsBackupConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_observabilityadmin » 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 { aws_observabilityadmin as observabilityadmin } from '@aws-cdk/cfn-property-mixins';
const logsBackupConfigurationProperty: observabilityadmin.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