Interface ModelEvents.AWSAPICallViaCloudTrail.SessionContext
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ModelEvents.AWSAPICallViaCloudTrail.SessionContext.Jsii$Proxy
- Enclosing class:
ModelEvents.AWSAPICallViaCloudTrail
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.sagemaker.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())
.webIdFederationData(List.of("webIdFederationData"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forModelEvents.AWSAPICallViaCloudTrail.SessionContextstatic final classAn implementation forModelEvents.AWSAPICallViaCloudTrail.SessionContext -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) attributes property.(experimental) sessionIssuer property.(experimental) webIdFederationData property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttributes
@Stability(Experimental) @Nullable default ModelEvents.AWSAPICallViaCloudTrail.Attributes getAttributes()(experimental) attributes property.Specify an array of string values to match this event if the actual value of attributes is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getSessionIssuer
@Stability(Experimental) @Nullable default ModelEvents.AWSAPICallViaCloudTrail.SessionIssuer getSessionIssuer()(experimental) sessionIssuer property.Specify an array of string values to match this event if the actual value of sessionIssuer is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getWebIdFederationData
(experimental) webIdFederationData property.Specify an array of string values to match this event if the actual value of webIdFederationData is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
@Stability(Experimental) static ModelEvents.AWSAPICallViaCloudTrail.SessionContext.Builder builder()
-