interface CentralizationRuleSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ObservabilityAdmin.CfnOrganizationCentralizationRulePropsMixin.CentralizationRuleSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsobservabilityadmin#CfnOrganizationCentralizationRulePropsMixin_CentralizationRuleSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.observabilityadmin.CfnOrganizationCentralizationRulePropsMixin.CentralizationRuleSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_observabilityadmin.CfnOrganizationCentralizationRulePropsMixin.CentralizationRuleSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_observabilityadmin » CfnOrganizationCentralizationRulePropsMixin » 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/cfn-property-mixins';
const centralizationRuleSourceProperty: observabilityadmin.CfnOrganizationCentralizationRulePropsMixin.CentralizationRuleSourceProperty = {
regions: ['regions'],
scope: 'scope',
sourceLogsConfiguration: {
dataSourceSelectionCriteria: 'dataSourceSelectionCriteria',
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[]
(optional)
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