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
Modifier and TypeMethodDescriptionallowSelfManagement(Boolean allowSelfManagement) Whether users can specify their own SSH public key through the My Settings page.iamUserArn(String iamUserArn) The user's IAM ARN; this can also be a federated user's ARN.overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.sshPublicKey(String sshPublicKey) The user's public SSH key.sshUsername(String sshUsername) The user's SSH user name.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfigurationMethods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.services.opsworks.model.OpsWorksRequest.Builder
buildMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
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
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, OpsWorks Stacks removes them. For example,
my.nameis changed tomyname. If you do not specify an SSH user name, 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, OpsWorks Stacks removes them. For example,my.nameis changed tomyname. If you do not specify an SSH user name, 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
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
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) Description copied from interface:AwsRequest.BuilderAdd an optional request override configuration.- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder- Parameters:
overrideConfiguration- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
CreateUserProfileRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.BuilderAdd an optional request override configuration.- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder- Parameters:
builderConsumer- AConsumerto which an emptyAwsRequestOverrideConfiguration.Builderwill be given.- Returns:
- This object for method chaining.
-