interface LogsEncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ObservabilityAdmin.Mixins.CfnOrganizationCentralizationRulePropsMixin.LogsEncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsobservabilityadmin/mixins#CfnOrganizationCentralizationRulePropsMixin_LogsEncryptionConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.observabilityadmin.mixins.CfnOrganizationCentralizationRulePropsMixin.LogsEncryptionConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_observabilityadmin.mixins.CfnOrganizationCentralizationRulePropsMixin.LogsEncryptionConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_observabilityadmin » mixins » CfnOrganizationCentralizationRulePropsMixin » LogsEncryptionConfigurationProperty |
Configuration for encrypting centralized log groups.
This configuration is only applied to destination log groups for which the corresponding source log groups are encrypted using Customer Managed KMS Keys.
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 logsEncryptionConfigurationProperty: observabilityadmin_mixins.CfnOrganizationCentralizationRulePropsMixin.LogsEncryptionConfigurationProperty = {
encryptionConflictResolutionStrategy: 'encryptionConflictResolutionStrategy',
encryptionStrategy: 'encryptionStrategy',
kmsKeyArn: 'kmsKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | string | Conflict resolution strategy for centralization if the encryption strategy is set to CUSTOMER_MANAGED and the destination log group is encrypted with an AWS_OWNED KMS Key. |
| encryption | string | Configuration that determines the encryption strategy of the destination log groups. |
| kms | string | KMS Key ARN belonging to the primary destination account and region, to encrypt newly created central log groups in the primary destination. |
encryptionConflictResolutionStrategy?
Type:
string
(optional)
Conflict resolution strategy for centralization if the encryption strategy is set to CUSTOMER_MANAGED and the destination log group is encrypted with an AWS_OWNED KMS Key.
ALLOW lets centralization go through while SKIP prevents centralization into the destination log group.
encryptionStrategy?
Type:
string
(optional)
Configuration that determines the encryption strategy of the destination log groups.
CUSTOMER_MANAGED uses the configured KmsKeyArn to encrypt newly created destination log groups.
kmsKeyArn?
Type:
string
(optional)
KMS Key ARN belonging to the primary destination account and region, to encrypt newly created central log groups in the primary destination.

.NET
Go
Java
Python
TypeScript