Interface FederatedUser.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<FederatedUser.Builder,FederatedUser>
,SdkBuilder<FederatedUser.Builder,FederatedUser>
,SdkPojo
- Enclosing class:
- FederatedUser
public static interface FederatedUser.Builder extends SdkPojo, CopyableBuilder<FederatedUser.Builder,FederatedUser>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FederatedUser.Builder
arn(String arn)
The ARN that specifies the federated user that is associated with the credentials.FederatedUser.Builder
federatedUserId(String federatedUserId)
The string that identifies the federated user associated with the credentials, similar to the unique ID of an IAM user.-
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
-
federatedUserId
FederatedUser.Builder federatedUserId(String federatedUserId)
The string that identifies the federated user associated with the credentials, similar to the unique ID of an IAM user.
- Parameters:
federatedUserId
- The string that identifies the federated user associated with the credentials, similar to the unique ID of an IAM user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
FederatedUser.Builder arn(String arn)
The ARN that specifies the federated user that is associated with the credentials. For more information about ARNs and how to use them in policies, see IAM Identifiers in the IAM User Guide.
- Parameters:
arn
- The ARN that specifies the federated user that is associated with the credentials. For more information about ARNs and how to use them in policies, see IAM Identifiers in the IAM User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-