Interface ActorSession.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ActorSession.Builder,ActorSession>,SdkBuilder<ActorSession.Builder,ActorSession>,SdkPojo
- Enclosing class:
- ActorSession
public static interface ActorSession.Builder extends SdkPojo, CopyableBuilder<ActorSession.Builder,ActorSession>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActorSession.BuildercreatedTime(Long createdTime)The timestamp for when the session was created.ActorSession.Builderissuer(String issuer)The issuer of the session.ActorSession.BuildermfaStatus(String mfaStatus)Indicates whether multi-factor authentication (MFA) was used for authentication during the session.ActorSession.BuildermfaStatus(ActorSessionMfaStatus mfaStatus)Indicates whether multi-factor authentication (MFA) was used for authentication during the session.ActorSession.Builderuid(String uid)Unique identifier of the session.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
uid
ActorSession.Builder uid(String uid)
Unique identifier of the session.
- Parameters:
uid- Unique identifier of the session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mfaStatus
ActorSession.Builder mfaStatus(String mfaStatus)
Indicates whether multi-factor authentication (MFA) was used for authentication during the session.
In CloudTrail, you can find this value as
userIdentity.sessionContext.attributes.mfaAuthenticated.- Parameters:
mfaStatus- Indicates whether multi-factor authentication (MFA) was used for authentication during the session.In CloudTrail, you can find this value as
userIdentity.sessionContext.attributes.mfaAuthenticated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActorSessionMfaStatus,ActorSessionMfaStatus
-
mfaStatus
ActorSession.Builder mfaStatus(ActorSessionMfaStatus mfaStatus)
Indicates whether multi-factor authentication (MFA) was used for authentication during the session.
In CloudTrail, you can find this value as
userIdentity.sessionContext.attributes.mfaAuthenticated.- Parameters:
mfaStatus- Indicates whether multi-factor authentication (MFA) was used for authentication during the session.In CloudTrail, you can find this value as
userIdentity.sessionContext.attributes.mfaAuthenticated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActorSessionMfaStatus,ActorSessionMfaStatus
-
createdTime
ActorSession.Builder createdTime(Long createdTime)
The timestamp for when the session was created.
In CloudTrail, you can find this value as
userIdentity.sessionContext.attributes.creationDate.- Parameters:
createdTime- The timestamp for when the session was created.In CloudTrail, you can find this value as
userIdentity.sessionContext.attributes.creationDate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
issuer
ActorSession.Builder issuer(String issuer)
The issuer of the session.
In CloudTrail, you can find this value as
userIdentity.sessionContext.sessionIssuer.arn.- Parameters:
issuer- The issuer of the session.In CloudTrail, you can find this value as
userIdentity.sessionContext.sessionIssuer.arn.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-