Interface UpdateFormRequest.Builder
-
- All Superinterfaces:
AmplifyUiBuilderRequest.Builder,AwsRequest.Builder,Buildable,CopyableBuilder<UpdateFormRequest.Builder,UpdateFormRequest>,SdkBuilder<UpdateFormRequest.Builder,UpdateFormRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateFormRequest
public static interface UpdateFormRequest.Builder extends AmplifyUiBuilderRequest.Builder, SdkPojo, CopyableBuilder<UpdateFormRequest.Builder,UpdateFormRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateFormRequest.BuilderappId(String appId)The unique ID for the Amplify app.UpdateFormRequest.BuilderclientToken(String clientToken)The unique client token.UpdateFormRequest.BuilderenvironmentName(String environmentName)The name of the backend environment that is part of the Amplify app.UpdateFormRequest.Builderid(String id)The unique ID for the form.UpdateFormRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateFormRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)default UpdateFormRequest.BuilderupdatedForm(Consumer<UpdateFormData.Builder> updatedForm)The request accepts the following data in JSON format.UpdateFormRequest.BuilderupdatedForm(UpdateFormData updatedForm)The request accepts the following data in JSON format.-
Methods inherited from interface software.amazon.awssdk.services.amplifyuibuilder.model.AmplifyUiBuilderRequest.Builder
build
-
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.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
appId
UpdateFormRequest.Builder appId(String appId)
The unique ID for the Amplify app.
- Parameters:
appId- The unique ID for the Amplify app.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
environmentName
UpdateFormRequest.Builder environmentName(String environmentName)
The name of the backend environment that is part of the Amplify app.
- Parameters:
environmentName- The name of the backend environment that is part of the Amplify app.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
id
UpdateFormRequest.Builder id(String id)
The unique ID for the form.
- Parameters:
id- The unique ID for the form.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientToken
UpdateFormRequest.Builder clientToken(String clientToken)
The unique client token.
- Parameters:
clientToken- The unique client token.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updatedForm
UpdateFormRequest.Builder updatedForm(UpdateFormData updatedForm)
The request accepts the following data in JSON format.
- Parameters:
updatedForm- The request accepts the following data in JSON format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updatedForm
default UpdateFormRequest.Builder updatedForm(Consumer<UpdateFormData.Builder> updatedForm)
The request accepts the following data in JSON format.
This is a convenience method that creates an instance of theUpdateFormData.Builderavoiding the need to create one manually viaUpdateFormData.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toupdatedForm(UpdateFormData).- Parameters:
updatedForm- a consumer that will call methods onUpdateFormData.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
updatedForm(UpdateFormData)
-
overrideConfiguration
UpdateFormRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateFormRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-