interface SourceLogsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ObservabilityAdmin.CfnOrganizationCentralizationRule.SourceLogsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsobservabilityadmin#CfnOrganizationCentralizationRule_SourceLogsConfigurationProperty |
Java | software.amazon.awscdk.services.observabilityadmin.CfnOrganizationCentralizationRule.SourceLogsConfigurationProperty |
Python | aws_cdk.aws_observabilityadmin.CfnOrganizationCentralizationRule.SourceLogsConfigurationProperty |
TypeScript | aws-cdk-lib » aws_observabilityadmin » CfnOrganizationCentralizationRule » SourceLogsConfigurationProperty |
Configuration for selecting and handling source log groups for centralization.
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 sourceLogsConfigurationProperty: observabilityadmin.CfnOrganizationCentralizationRule.SourceLogsConfigurationProperty = {
encryptedLogGroupStrategy: 'encryptedLogGroupStrategy',
logGroupSelectionCriteria: 'logGroupSelectionCriteria',
};
Properties
| Name | Type | Description |
|---|---|---|
| encrypted | string | A strategy determining whether to centralize source log groups that are encrypted with customer managed KMS keys (CMK). |
| log | string | The selection criteria that specifies which source log groups to centralize. |
encryptedLogGroupStrategy
Type:
string
A strategy determining whether to centralize source log groups that are encrypted with customer managed KMS keys (CMK).
ALLOW will consider CMK encrypted source log groups for centralization while SKIP will skip CMK encrypted source log groups from centralization.
logGroupSelectionCriteria
Type:
string
The selection criteria that specifies which source log groups to centralize.
The selection criteria uses the same format as OAM link filters.

.NET
Go
Java
Python
TypeScript