Interface AssumedRoleUser.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<AssumedRoleUser.Builder,AssumedRoleUser>
,SdkBuilder<AssumedRoleUser.Builder,AssumedRoleUser>
,SdkPojo
- Enclosing class:
- AssumedRoleUser
public static interface AssumedRoleUser.Builder extends SdkPojo, CopyableBuilder<AssumedRoleUser.Builder,AssumedRoleUser>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AssumedRoleUser.Builder
arn(String arn)
The ARN of the temporary security credentials that are returned from the AssumeRole action.AssumedRoleUser.Builder
assumedRoleId(String assumedRoleId)
A unique identifier that contains the role ID and the role session name of the role that is being assumed.-
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
-
assumedRoleId
AssumedRoleUser.Builder assumedRoleId(String assumedRoleId)
A unique identifier that contains the role ID and the role session name of the role that is being assumed. The role ID is generated by Amazon Web Services when the role is created.
- Parameters:
assumedRoleId
- A unique identifier that contains the role ID and the role session name of the role that is being assumed. The role ID is generated by Amazon Web Services when the role is created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
AssumedRoleUser.Builder arn(String arn)
The ARN of the temporary security credentials that are returned from the AssumeRole action. For more information about ARNs and how to use them in policies, see IAM Identifiers in the IAM User Guide.
- Parameters:
arn
- The ARN of the temporary security credentials that are returned from the AssumeRole action. 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.
-
-