Interface IamUser.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IamUser.Builder,IamUser>,SdkBuilder<IamUser.Builder,IamUser>,SdkPojo
- Enclosing class:
- IamUser
public static interface IamUser.Builder extends SdkPojo, CopyableBuilder<IamUser.Builder,IamUser>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IamUser.BuilderaccountId(String accountId)The unique identifier for the Amazon Web Services account that's associated with the IAM user who performed the action.IamUser.Builderarn(String arn)The Amazon Resource Name (ARN) of the principal that performed the action.IamUser.BuilderprincipalId(String principalId)The unique identifier for the IAM user who performed the action.IamUser.BuilderuserName(String userName)The username of the IAM user who performed the action.-
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, sdkFields
-
-
-
-
Method Detail
-
accountId
IamUser.Builder accountId(String accountId)
The unique identifier for the Amazon Web Services account that's associated with the IAM user who performed the action.
- Parameters:
accountId- The unique identifier for the Amazon Web Services account that's associated with the IAM user who performed the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
IamUser.Builder arn(String arn)
The Amazon Resource Name (ARN) of the principal that performed the action. The last section of the ARN contains the name of the user who performed the action.
- Parameters:
arn- The Amazon Resource Name (ARN) of the principal that performed the action. The last section of the ARN contains the name of the user who performed the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
principalId
IamUser.Builder principalId(String principalId)
The unique identifier for the IAM user who performed the action.
- Parameters:
principalId- The unique identifier for the IAM user who performed the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userName
IamUser.Builder userName(String userName)
The username of the IAM user who performed the action.
- Parameters:
userName- The username of the IAM user who performed the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-