interface CentralizationRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ObservabilityAdmin.CfnOrganizationCentralizationRule.CentralizationRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsobservabilityadmin#CfnOrganizationCentralizationRule_CentralizationRuleProperty |
Java | software.amazon.awscdk.services.observabilityadmin.CfnOrganizationCentralizationRule.CentralizationRuleProperty |
Python | aws_cdk.aws_observabilityadmin.CfnOrganizationCentralizationRule.CentralizationRuleProperty |
TypeScript | aws-cdk-lib » aws_observabilityadmin » CfnOrganizationCentralizationRule » CentralizationRuleProperty |
Defines how telemetry data should be centralized across an AWS Organization, including source and destination configurations.
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 centralizationRuleProperty: observabilityadmin.CfnOrganizationCentralizationRule.CentralizationRuleProperty = {
destination: {
region: 'region',
// the properties below are optional
account: 'account',
destinationLogsConfiguration: {
backupConfiguration: {
region: 'region',
// the properties below are optional
kmsKeyArn: 'kmsKeyArn',
},
logsEncryptionConfiguration: {
encryptionStrategy: 'encryptionStrategy',
// the properties below are optional
encryptionConflictResolutionStrategy: 'encryptionConflictResolutionStrategy',
kmsKeyArn: 'kmsKeyArn',
},
},
},
source: {
regions: ['regions'],
// the properties below are optional
scope: 'scope',
sourceLogsConfiguration: {
encryptedLogGroupStrategy: 'encryptedLogGroupStrategy',
logGroupSelectionCriteria: 'logGroupSelectionCriteria',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | IResolvable | Centralization | Configuration determining where the telemetry data should be centralized, backed up, as well as encryption configuration for the primary and backup destinations. |
| source | IResolvable | Centralization | Configuration determining the source of the telemetry data to be centralized. |
destination
Type:
IResolvable | Centralization
Configuration determining where the telemetry data should be centralized, backed up, as well as encryption configuration for the primary and backup destinations.
source
Type:
IResolvable | Centralization
Configuration determining the source of the telemetry data to be centralized.

.NET
Go
Java
Python
TypeScript