interface CentralizationRuleSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ObservabilityAdmin.CfnOrganizationCentralizationRule.CentralizationRuleSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsobservabilityadmin#CfnOrganizationCentralizationRule_CentralizationRuleSourceProperty |
Java | software.amazon.awscdk.services.observabilityadmin.CfnOrganizationCentralizationRule.CentralizationRuleSourceProperty |
Python | aws_cdk.aws_observabilityadmin.CfnOrganizationCentralizationRule.CentralizationRuleSourceProperty |
TypeScript | aws-cdk-lib » aws_observabilityadmin » CfnOrganizationCentralizationRule » CentralizationRuleSourceProperty |
Configuration specifying the source of telemetry data to be centralized.
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 centralizationRuleSourceProperty: observabilityadmin.CfnOrganizationCentralizationRule.CentralizationRuleSourceProperty = {
regions: ['regions'],
// the properties below are optional
scope: 'scope',
sourceLogsConfiguration: {
encryptedLogGroupStrategy: 'encryptedLogGroupStrategy',
logGroupSelectionCriteria: 'logGroupSelectionCriteria',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| regions | string[] | The list of source regions from which telemetry data should be centralized. |
| scope? | string | The organizational scope from which telemetry data should be centralized, specified using organization id, accounts or organizational unit ids. |
| source | IResolvable | Source | Log specific configuration for centralization source log groups. |
regions
Type:
string[]
The list of source regions from which telemetry data should be centralized.
scope?
Type:
string
(optional)
The organizational scope from which telemetry data should be centralized, specified using organization id, accounts or organizational unit ids.
sourceLogsConfiguration?
Type:
IResolvable | Source
(optional)
Log specific configuration for centralization source log groups.

.NET
Go
Java
Python
TypeScript