interface CentralizationRuleDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ObservabilityAdmin.CfnOrganizationCentralizationRule.CentralizationRuleDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsobservabilityadmin#CfnOrganizationCentralizationRule_CentralizationRuleDestinationProperty |
Java | software.amazon.awscdk.services.observabilityadmin.CfnOrganizationCentralizationRule.CentralizationRuleDestinationProperty |
Python | aws_cdk.aws_observabilityadmin.CfnOrganizationCentralizationRule.CentralizationRuleDestinationProperty |
TypeScript | aws-cdk-lib » aws_observabilityadmin » CfnOrganizationCentralizationRule » CentralizationRuleDestinationProperty |
Configuration specifying the primary destination for centralized telemetry data.
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 centralizationRuleDestinationProperty: observabilityadmin.CfnOrganizationCentralizationRule.CentralizationRuleDestinationProperty = {
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',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| region | string | The primary destination region to which telemetry data should be centralized. |
| account? | string | The destination account (within the organization) to which the telemetry data should be centralized. |
| destination | IResolvable | Destination | Log specific configuration for centralization destination log groups. |
region
Type:
string
The primary destination region to which telemetry data should be centralized.
account?
Type:
string
(optional)
The destination account (within the organization) to which the telemetry data should be centralized.
destinationLogsConfiguration?
Type:
IResolvable | Destination
(optional)
Log specific configuration for centralization destination log groups.

.NET
Go
Java
Python
TypeScript