Interface CfnOrganizationCentralizationRule.CentralizationRuleDestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOrganizationCentralizationRule.CentralizationRuleDestinationProperty.Jsii$Proxy
- Enclosing class:
CfnOrganizationCentralizationRule
@Stability(Stable)
public static interface CfnOrganizationCentralizationRule.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.services.observabilityadmin.*;
CentralizationRuleDestinationProperty centralizationRuleDestinationProperty = CentralizationRuleDestinationProperty.builder()
.region("region")
// the properties below are optional
.account("account")
.destinationLogsConfiguration(DestinationLogsConfigurationProperty.builder()
.backupConfiguration(LogsBackupConfigurationProperty.builder()
.region("region")
// the properties below are optional
.kmsKeyArn("kmsKeyArn")
.build())
.logsEncryptionConfiguration(LogsEncryptionConfigurationProperty.builder()
.encryptionStrategy("encryptionStrategy")
// the properties below are optional
.encryptionConflictResolutionStrategy("encryptionConflictResolutionStrategy")
.kmsKeyArn("kmsKeyArn")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnOrganizationCentralizationRule.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.The primary destination region to which telemetry data should be centralized.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRegion
The primary destination region to which telemetry data should be centralized.- See Also:
-
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
IResolvableorCfnOrganizationCentralizationRule.DestinationLogsConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnOrganizationCentralizationRule.CentralizationRuleDestinationProperty.Builder builder()
-