Interface UpdateUserProfileRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CodeStarRequest.Builder,CopyableBuilder<UpdateUserProfileRequest.Builder,UpdateUserProfileRequest>,SdkBuilder<UpdateUserProfileRequest.Builder,UpdateUserProfileRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateUserProfileRequest
public static interface UpdateUserProfileRequest.Builder extends CodeStarRequest.Builder, SdkPojo, CopyableBuilder<UpdateUserProfileRequest.Builder,UpdateUserProfileRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateUserProfileRequest.BuilderdisplayName(String displayName)The name that is displayed as the friendly name for the user in AWS CodeStar.UpdateUserProfileRequest.BuilderemailAddress(String emailAddress)The email address that is displayed as part of the user's profile in AWS CodeStar.UpdateUserProfileRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateUserProfileRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateUserProfileRequest.BuildersshPublicKey(String sshPublicKey)The SSH public key associated with the user in AWS CodeStar.UpdateUserProfileRequest.BuilderuserArn(String userArn)The name that will be displayed as the friendly name for the user in AWS CodeStar.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.codestar.model.CodeStarRequest.Builder
build
-
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
-
userArn
UpdateUserProfileRequest.Builder userArn(String userArn)
The name that will be displayed as the friendly name for the user in AWS CodeStar.
- Parameters:
userArn- The name that will be displayed as the friendly name for the user in AWS CodeStar.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayName
UpdateUserProfileRequest.Builder displayName(String displayName)
The name that is displayed as the friendly name for the user in AWS CodeStar.
- Parameters:
displayName- The name that is displayed as the friendly name for the user in AWS CodeStar.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
emailAddress
UpdateUserProfileRequest.Builder emailAddress(String emailAddress)
The email address that is displayed as part of the user's profile in AWS CodeStar.
- Parameters:
emailAddress- The email address that is displayed as part of the user's profile in AWS CodeStar.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sshPublicKey
UpdateUserProfileRequest.Builder sshPublicKey(String sshPublicKey)
The SSH public key associated with the user in AWS CodeStar. If a project owner allows the user remote access to project resources, this public key will be used along with the user's private key for SSH access.
- Parameters:
sshPublicKey- The SSH public key associated with the user in AWS CodeStar. If a project owner allows the user remote access to project resources, this public key will be used along with the user's private key for SSH access.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UpdateUserProfileRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateUserProfileRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-