Interface CfnSessionLoggerMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSessionLoggerMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:33.212Z")
@Stability(Stable)
public interface CfnSessionLoggerMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnSessionLoggerPropsMixin.
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.workspacesweb.mixins.*;
Object all;
CfnSessionLoggerMixinProps cfnSessionLoggerMixinProps = CfnSessionLoggerMixinProps.builder()
.additionalEncryptionContext(Map.of(
"additionalEncryptionContextKey", "additionalEncryptionContext"))
.customerManagedKey("customerManagedKey")
.displayName("displayName")
.eventFilter(EventFilterProperty.builder()
.all(all)
.include(List.of("include"))
.build())
.logConfiguration(LogConfigurationProperty.builder()
.s3(S3LogConfigurationProperty.builder()
.bucket("bucket")
.bucketOwner("bucketOwner")
.folderStructure("folderStructure")
.keyPrefix("keyPrefix")
.logFileFormat("logFileFormat")
.build())
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSessionLoggerMixinPropsstatic final classAn implementation forCfnSessionLoggerMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe additional encryption context of the session logger.default StringThe custom managed key of the session logger.default StringThe human-readable display name.default ObjectThe filter that specifies which events to monitor.default ObjectThe configuration that specifies where logs are fowarded.getTags()The tags of the session logger.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdditionalEncryptionContext
The additional encryption context of the session logger.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getCustomerManagedKey
The custom managed key of the session logger.- See Also:
-
getDisplayName
The human-readable display name.- See Also:
-
getEventFilter
The filter that specifies which events to monitor.Returns union: either
IResolvableorCfnSessionLoggerPropsMixin.EventFilterProperty- See Also:
-
getLogConfiguration
The configuration that specifies where logs are fowarded.Returns union: either
IResolvableorCfnSessionLoggerPropsMixin.LogConfigurationProperty- See Also:
-
getTags
The tags of the session logger.- See Also:
-
builder
- Returns:
- a
CfnSessionLoggerMixinProps.BuilderofCfnSessionLoggerMixinProps
-