interface DestinationLogsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ObservabilityAdmin.CfnOrganizationCentralizationRule.DestinationLogsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsobservabilityadmin#CfnOrganizationCentralizationRule_DestinationLogsConfigurationProperty |
Java | software.amazon.awscdk.services.observabilityadmin.CfnOrganizationCentralizationRule.DestinationLogsConfigurationProperty |
Python | aws_cdk.aws_observabilityadmin.CfnOrganizationCentralizationRule.DestinationLogsConfigurationProperty |
TypeScript | aws-cdk-lib » aws_observabilityadmin » CfnOrganizationCentralizationRule » DestinationLogsConfigurationProperty |
Configuration for centralization destination log groups, including encryption and backup settings.
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 destinationLogsConfigurationProperty: observabilityadmin.CfnOrganizationCentralizationRule.DestinationLogsConfigurationProperty = {
backupConfiguration: {
region: 'region',
// the properties below are optional
kmsKeyArn: 'kmsKeyArn',
},
logsEncryptionConfiguration: {
encryptionStrategy: 'encryptionStrategy',
// the properties below are optional
encryptionConflictResolutionStrategy: 'encryptionConflictResolutionStrategy',
kmsKeyArn: 'kmsKeyArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| backup | IResolvable | Logs | Configuration defining the backup region and an optional KMS key for the backup destination. |
| logs | IResolvable | Logs | The encryption configuration for centralization destination log groups. |
backupConfiguration?
Type:
IResolvable | Logs
(optional)
Configuration defining the backup region and an optional KMS key for the backup destination.
logsEncryptionConfiguration?
Type:
IResolvable | Logs
(optional)
The encryption configuration for centralization destination log groups.

.NET
Go
Java
Python
TypeScript