Interface AssociateUserRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<AssociateUserRequest.Builder,AssociateUserRequest>,LicenseManagerUserSubscriptionsRequest.Builder,SdkBuilder<AssociateUserRequest.Builder,AssociateUserRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- AssociateUserRequest
public static interface AssociateUserRequest.Builder extends LicenseManagerUserSubscriptionsRequest.Builder, SdkPojo, CopyableBuilder<AssociateUserRequest.Builder,AssociateUserRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description AssociateUserRequest.Builderdomain(String domain)The domain name of the Active Directory that contains information for the user to associate.default AssociateUserRequest.BuilderidentityProvider(Consumer<IdentityProvider.Builder> identityProvider)The identity provider for the user.AssociateUserRequest.BuilderidentityProvider(IdentityProvider identityProvider)The identity provider for the user.AssociateUserRequest.BuilderinstanceId(String instanceId)The ID of the EC2 instance that provides the user-based subscription.AssociateUserRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)AssociateUserRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)AssociateUserRequest.Buildertags(Map<String,String> tags)The tags that apply for the user association.AssociateUserRequest.Builderusername(String username)The user name from the identity provider.-
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.licensemanagerusersubscriptions.model.LicenseManagerUserSubscriptionsRequest.Builder
build
-
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
-
domain
AssociateUserRequest.Builder domain(String domain)
The domain name of the Active Directory that contains information for the user to associate.
- Parameters:
domain- The domain name of the Active Directory that contains information for the user to associate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
identityProvider
AssociateUserRequest.Builder identityProvider(IdentityProvider identityProvider)
The identity provider for the user.
- Parameters:
identityProvider- The identity provider for the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
identityProvider
default AssociateUserRequest.Builder identityProvider(Consumer<IdentityProvider.Builder> identityProvider)
The identity provider for the user.
This is a convenience method that creates an instance of theIdentityProvider.Builderavoiding the need to create one manually viaIdentityProvider.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toidentityProvider(IdentityProvider).- Parameters:
identityProvider- a consumer that will call methods onIdentityProvider.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
identityProvider(IdentityProvider)
-
instanceId
AssociateUserRequest.Builder instanceId(String instanceId)
The ID of the EC2 instance that provides the user-based subscription.
- Parameters:
instanceId- The ID of the EC2 instance that provides the user-based subscription.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
AssociateUserRequest.Builder tags(Map<String,String> tags)
The tags that apply for the user association.
- Parameters:
tags- The tags that apply for the user association.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
username
AssociateUserRequest.Builder username(String username)
The user name from the identity provider.
- Parameters:
username- The user name from the identity provider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
AssociateUserRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
AssociateUserRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-