Interface CreateUserProfileRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CodeStarRequest.Builder,CopyableBuilder<CreateUserProfileRequest.Builder,CreateUserProfileRequest>,SdkBuilder<CreateUserProfileRequest.Builder,CreateUserProfileRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateUserProfileRequest
public static interface CreateUserProfileRequest.Builder extends CodeStarRequest.Builder, SdkPojo, CopyableBuilder<CreateUserProfileRequest.Builder,CreateUserProfileRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateUserProfileRequest.BuilderdisplayName(String displayName)The name that will be displayed as the friendly name for the user in AWS CodeStar.CreateUserProfileRequest.BuilderemailAddress(String emailAddress)The email address that will be displayed as part of the user's profile in AWS CodeStar.CreateUserProfileRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateUserProfileRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CreateUserProfileRequest.BuildersshPublicKey(String sshPublicKey)The SSH public key associated with the user in AWS CodeStar.CreateUserProfileRequest.BuilderuserArn(String userArn)The Amazon Resource Name (ARN) of the user in IAM.-
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
CreateUserProfileRequest.Builder userArn(String userArn)
The Amazon Resource Name (ARN) of the user in IAM.
- Parameters:
userArn- The Amazon Resource Name (ARN) of the user in IAM.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayName
CreateUserProfileRequest.Builder displayName(String displayName)
The name that will be displayed as the friendly name for the user in AWS CodeStar.
- Parameters:
displayName- 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.
-
emailAddress
CreateUserProfileRequest.Builder emailAddress(String emailAddress)
The email address that will be displayed as part of the user's profile in AWS CodeStar.
- Parameters:
emailAddress- The email address that will be 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
CreateUserProfileRequest.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
CreateUserProfileRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateUserProfileRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-