Interface UpdateBackendConfigResponse.Builder
-
- All Superinterfaces:
AmplifyBackendResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<UpdateBackendConfigResponse.Builder,UpdateBackendConfigResponse>,SdkBuilder<UpdateBackendConfigResponse.Builder,UpdateBackendConfigResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- UpdateBackendConfigResponse
public static interface UpdateBackendConfigResponse.Builder extends AmplifyBackendResponse.Builder, SdkPojo, CopyableBuilder<UpdateBackendConfigResponse.Builder,UpdateBackendConfigResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateBackendConfigResponse.BuilderappId(String appId)The app ID.UpdateBackendConfigResponse.BuilderbackendManagerAppId(String backendManagerAppId)The app ID for the backend manager.UpdateBackendConfigResponse.Buildererror(String error)If the request fails, this error is returned.default UpdateBackendConfigResponse.BuilderloginAuthConfig(Consumer<LoginAuthConfigReqObj.Builder> loginAuthConfig)Describes the Amazon Cognito configurations for the Admin UI auth resource to log in with.UpdateBackendConfigResponse.BuilderloginAuthConfig(LoginAuthConfigReqObj loginAuthConfig)Describes the Amazon Cognito configurations for the Admin UI auth resource to log in with.-
Methods inherited from interface software.amazon.awssdk.services.amplifybackend.model.AmplifyBackendResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
appId
UpdateBackendConfigResponse.Builder appId(String appId)
The app ID.
- Parameters:
appId- The app ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
backendManagerAppId
UpdateBackendConfigResponse.Builder backendManagerAppId(String backendManagerAppId)
The app ID for the backend manager.
- Parameters:
backendManagerAppId- The app ID for the backend manager.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
error
UpdateBackendConfigResponse.Builder error(String error)
If the request fails, this error is returned.
- Parameters:
error- If the request fails, this error is returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
loginAuthConfig
UpdateBackendConfigResponse.Builder loginAuthConfig(LoginAuthConfigReqObj loginAuthConfig)
Describes the Amazon Cognito configurations for the Admin UI auth resource to log in with.
- Parameters:
loginAuthConfig- Describes the Amazon Cognito configurations for the Admin UI auth resource to log in with.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
loginAuthConfig
default UpdateBackendConfigResponse.Builder loginAuthConfig(Consumer<LoginAuthConfigReqObj.Builder> loginAuthConfig)
Describes the Amazon Cognito configurations for the Admin UI auth resource to log in with.
This is a convenience method that creates an instance of theLoginAuthConfigReqObj.Builderavoiding the need to create one manually viaLoginAuthConfigReqObj.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tologinAuthConfig(LoginAuthConfigReqObj).- Parameters:
loginAuthConfig- a consumer that will call methods onLoginAuthConfigReqObj.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
loginAuthConfig(LoginAuthConfigReqObj)
-
-