Interface ModelEvents.AWSAPICallViaCloudTrail.UserIdentity
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ModelEvents.AWSAPICallViaCloudTrail.UserIdentity.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.*;
UserIdentity userIdentity = UserIdentity.builder()
.accessKeyId(List.of("accessKeyId"))
.accountId(List.of("accountId"))
.arn(List.of("arn"))
.invokedBy(List.of("invokedBy"))
.principalId(List.of("principalId"))
.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())
.type(List.of("type"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forModelEvents.AWSAPICallViaCloudTrail.UserIdentitystatic final classAn implementation forModelEvents.AWSAPICallViaCloudTrail.UserIdentity -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) accessKeyId property.(experimental) accountId property.getArn()(experimental) arn property.(experimental) invokedBy property.(experimental) principalId property.(experimental) sessionContext property.getType()(experimental) type property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessKeyId
(experimental) accessKeyId property.Specify an array of string values to match this event if the actual value of accessKeyId 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
-
getAccountId
(experimental) accountId property.Specify an array of string values to match this event if the actual value of accountId 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
-
getArn
(experimental) arn property.Specify an array of string values to match this event if the actual value of arn 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
-
getInvokedBy
(experimental) invokedBy property.Specify an array of string values to match this event if the actual value of invokedBy 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
-
getPrincipalId
(experimental) principalId property.Specify an array of string values to match this event if the actual value of principalId 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
-
getSessionContext
@Stability(Experimental) @Nullable default ModelEvents.AWSAPICallViaCloudTrail.SessionContext getSessionContext()(experimental) sessionContext property.Specify an array of string values to match this event if the actual value of sessionContext 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
-
getType
(experimental) type property.Specify an array of string values to match this event if the actual value of type 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
-