Interface LogGroupEvents.AWSAPICallViaCloudTrail.SessionContext

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
LogGroupEvents.AWSAPICallViaCloudTrail.SessionContext.Jsii$Proxy
Enclosing class:
LogGroupEvents.AWSAPICallViaCloudTrail

@Stability(Experimental) public static interface LogGroupEvents.AWSAPICallViaCloudTrail.SessionContext extends software.amazon.jsii.JsiiSerializable
(experimental) Type definition for SessionContext.

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.logs.events.*;
 SessionContext sessionContext = SessionContext.builder()
         .attributes(Attributes.builder()
                 .creationDate(List.of("creationDate"))
                 .mfaAuthenticated(List.of("mfaAuthenticated"))
                 .build())
         .sessionIssuer(SessionIssuer.builder()
                 .accountId(List.of("accountId"))
                 .arn(List.of("arn"))
                 .principalId(List.of("principalId"))
                 .type(List.of("type"))
                 .userName(List.of("userName"))
                 .build())
         .build();