Interface CfnOrganizationCentralizationRule.SourceLogsConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOrganizationCentralizationRule.SourceLogsConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnOrganizationCentralizationRule
@Stability(Stable)
public static interface CfnOrganizationCentralizationRule.SourceLogsConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.observabilityadmin.*;
SourceLogsConfigurationProperty sourceLogsConfigurationProperty = SourceLogsConfigurationProperty.builder()
.encryptedLogGroupStrategy("encryptedLogGroupStrategy")
.logGroupSelectionCriteria("logGroupSelectionCriteria")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnOrganizationCentralizationRule.SourceLogsConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()A strategy determining whether to centralize source log groups that are encrypted with customer managed KMS keys (CMK).The selection criteria that specifies which source log groups to centralize.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryptedLogGroupStrategy
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.
- See Also:
-
getLogGroupSelectionCriteria
The selection criteria that specifies which source log groups to centralize.The selection criteria uses the same format as OAM link filters.
- See Also:
-
builder
@Stability(Stable) static CfnOrganizationCentralizationRule.SourceLogsConfigurationProperty.Builder builder()
-