Interface CfnOrganizationCentralizationRulePropsMixin.CentralizationRuleDestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOrganizationCentralizationRulePropsMixin.CentralizationRuleDestinationProperty.Jsii$Proxy
- Enclosing class:
CfnOrganizationCentralizationRulePropsMixin
@Stability(Stable)
public static interface CfnOrganizationCentralizationRulePropsMixin.CentralizationRuleDestinationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.mixins.preview.services.observabilityadmin.mixins.*;
CentralizationRuleDestinationProperty centralizationRuleDestinationProperty = CentralizationRuleDestinationProperty.builder()
.account("account")
.destinationLogsConfiguration(DestinationLogsConfigurationProperty.builder()
.backupConfiguration(LogsBackupConfigurationProperty.builder()
.kmsKeyArn("kmsKeyArn")
.region("region")
.build())
.logsEncryptionConfiguration(LogsEncryptionConfigurationProperty.builder()
.encryptionConflictResolutionStrategy("encryptionConflictResolutionStrategy")
.encryptionStrategy("encryptionStrategy")
.kmsKeyArn("kmsKeyArn")
.build())
.build())
.region("region")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnOrganizationCentralizationRulePropsMixin.CentralizationRuleDestinationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe destination account (within the organization) to which the telemetry data should be centralized.default ObjectLog specific configuration for centralization destination log groups.default StringThe primary destination region to which telemetry data should be centralized.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccount
The destination account (within the organization) to which the telemetry data should be centralized.- See Also:
-
getDestinationLogsConfiguration
Log specific configuration for centralization destination log groups.Returns union: either
IResolvableorCfnOrganizationCentralizationRulePropsMixin.DestinationLogsConfigurationProperty- See Also:
-
getRegion
The primary destination region to which telemetry data should be centralized.- See Also:
-
builder
@Stability(Stable) static CfnOrganizationCentralizationRulePropsMixin.CentralizationRuleDestinationProperty.Builder builder()
-