interface CentralizationRuleDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ObservabilityAdmin.CfnOrganizationCentralizationRulePropsMixin.CentralizationRuleDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsobservabilityadmin#CfnOrganizationCentralizationRulePropsMixin_CentralizationRuleDestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.observabilityadmin.CfnOrganizationCentralizationRulePropsMixin.CentralizationRuleDestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_observabilityadmin.CfnOrganizationCentralizationRulePropsMixin.CentralizationRuleDestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_observabilityadmin » CfnOrganizationCentralizationRulePropsMixin » 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/cfn-property-mixins';
const centralizationRuleDestinationProperty: observabilityadmin.CfnOrganizationCentralizationRulePropsMixin.CentralizationRuleDestinationProperty = {
account: 'account',
destinationLogsConfiguration: {
backupConfiguration: {
kmsKeyArn: 'kmsKeyArn',
region: 'region',
},
logGroupNameConfiguration: {
logGroupNamePattern: 'logGroupNamePattern',
},
logsEncryptionConfiguration: {
encryptionConflictResolutionStrategy: 'encryptionConflictResolutionStrategy',
encryptionStrategy: 'encryptionStrategy',
kmsKeyArn: 'kmsKeyArn',
},
},
region: 'region',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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? | 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.
region?
Type:
string
(optional)
The primary destination region to which telemetry data should be centralized.

.NET
Go
Java
Python
TypeScript