Interface AddCustomAttributesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CognitoIdentityProviderRequest.Builder,CopyableBuilder<AddCustomAttributesRequest.Builder,AddCustomAttributesRequest>,SdkBuilder<AddCustomAttributesRequest.Builder,AddCustomAttributesRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- AddCustomAttributesRequest
public static interface AddCustomAttributesRequest.Builder extends CognitoIdentityProviderRequest.Builder, SdkPojo, CopyableBuilder<AddCustomAttributesRequest.Builder,AddCustomAttributesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AddCustomAttributesRequest.BuildercustomAttributes(Collection<SchemaAttributeType> customAttributes)An array of custom attributes, such as Mutable and Name.AddCustomAttributesRequest.BuildercustomAttributes(Consumer<SchemaAttributeType.Builder>... customAttributes)An array of custom attributes, such as Mutable and Name.AddCustomAttributesRequest.BuildercustomAttributes(SchemaAttributeType... customAttributes)An array of custom attributes, such as Mutable and Name.AddCustomAttributesRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)AddCustomAttributesRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)AddCustomAttributesRequest.BuilderuserPoolId(String userPoolId)The user pool ID for the user pool where you want to add custom attributes.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.cognitoidentityprovider.model.CognitoIdentityProviderRequest.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
-
userPoolId
AddCustomAttributesRequest.Builder userPoolId(String userPoolId)
The user pool ID for the user pool where you want to add custom attributes.
- Parameters:
userPoolId- The user pool ID for the user pool where you want to add custom attributes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customAttributes
AddCustomAttributesRequest.Builder customAttributes(Collection<SchemaAttributeType> customAttributes)
An array of custom attributes, such as Mutable and Name.
- Parameters:
customAttributes- An array of custom attributes, such as Mutable and Name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customAttributes
AddCustomAttributesRequest.Builder customAttributes(SchemaAttributeType... customAttributes)
An array of custom attributes, such as Mutable and Name.
- Parameters:
customAttributes- An array of custom attributes, such as Mutable and Name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customAttributes
AddCustomAttributesRequest.Builder customAttributes(Consumer<SchemaAttributeType.Builder>... customAttributes)
An array of custom attributes, such as Mutable and Name.
This is a convenience method that creates an instance of theSchemaAttributeType.Builderavoiding the need to create one manually viaSchemaAttributeType.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#customAttributes(List.) - Parameters:
customAttributes- a consumer that will call methods onSchemaAttributeType.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#customAttributes(java.util.Collection)
-
overrideConfiguration
AddCustomAttributesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
AddCustomAttributesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-