Interface CreateUserProfileRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<CreateUserProfileRequest.Builder,CreateUserProfileRequest>,OpsWorksRequest.Builder,SdkBuilder<CreateUserProfileRequest.Builder,CreateUserProfileRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateUserProfileRequest
public static interface CreateUserProfileRequest.Builder extends OpsWorksRequest.Builder, SdkPojo, CopyableBuilder<CreateUserProfileRequest.Builder,CreateUserProfileRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateUserProfileRequest.BuilderallowSelfManagement(Boolean allowSelfManagement)Whether users can specify their own SSH public key through the My Settings page.CreateUserProfileRequest.BuilderiamUserArn(String iamUserArn)The user's IAM ARN; this can also be a federated user's ARN.CreateUserProfileRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateUserProfileRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CreateUserProfileRequest.BuildersshPublicKey(String sshPublicKey)The user's public SSH key.CreateUserProfileRequest.BuildersshUsername(String sshUsername)The user's SSH user name.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.opsworks.model.OpsWorksRequest.Builder
build
-
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
-
iamUserArn
CreateUserProfileRequest.Builder iamUserArn(String iamUserArn)
The user's IAM ARN; this can also be a federated user's ARN.
- Parameters:
iamUserArn- The user's IAM ARN; this can also be a federated user's ARN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sshUsername
CreateUserProfileRequest.Builder sshUsername(String sshUsername)
The user's SSH user name. The allowable characters are [a-z], [A-Z], [0-9], '-', and '_'. If the specified name includes other punctuation marks, AWS OpsWorks Stacks removes them. For example,
my.namewill be changed tomyname. If you do not specify an SSH user name, AWS OpsWorks Stacks generates one from the IAM user name.- Parameters:
sshUsername- The user's SSH user name. The allowable characters are [a-z], [A-Z], [0-9], '-', and '_'. If the specified name includes other punctuation marks, AWS OpsWorks Stacks removes them. For example,my.namewill be changed tomyname. If you do not specify an SSH user name, AWS OpsWorks Stacks generates one from the IAM user name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sshPublicKey
CreateUserProfileRequest.Builder sshPublicKey(String sshPublicKey)
The user's public SSH key.
- Parameters:
sshPublicKey- The user's public SSH key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowSelfManagement
CreateUserProfileRequest.Builder allowSelfManagement(Boolean allowSelfManagement)
Whether users can specify their own SSH public key through the My Settings page. For more information, see Setting an IAM User's Public SSH Key.
- Parameters:
allowSelfManagement- Whether users can specify their own SSH public key through the My Settings page. For more information, see Setting an IAM User's Public SSH Key.- 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
-
-