Interface UpdateUserDefinedFunctionRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<UpdateUserDefinedFunctionRequest.Builder,
,UpdateUserDefinedFunctionRequest> GlueRequest.Builder
,SdkBuilder<UpdateUserDefinedFunctionRequest.Builder,
,UpdateUserDefinedFunctionRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
UpdateUserDefinedFunctionRequest
public static interface UpdateUserDefinedFunctionRequest.Builder
extends GlueRequest.Builder, SdkPojo, CopyableBuilder<UpdateUserDefinedFunctionRequest.Builder,UpdateUserDefinedFunctionRequest>
-
Method Summary
Modifier and TypeMethodDescriptionThe ID of the Data Catalog where the function to be updated is located.databaseName
(String databaseName) The name of the catalog database where the function to be updated is located.functionInput
(Consumer<UserDefinedFunctionInput.Builder> functionInput) AFunctionInput
object that redefines the function in the Data Catalog.functionInput
(UserDefinedFunctionInput functionInput) AFunctionInput
object that redefines the function in the Data Catalog.functionName
(String functionName) The name of the function.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.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.glue.model.GlueRequest.Builder
build
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
catalogId
The ID of the Data Catalog where the function to be updated is located. If none is provided, the Amazon Web Services account ID is used by default.
- Parameters:
catalogId
- The ID of the Data Catalog where the function to be updated is located. If none is provided, the Amazon Web Services account ID is used by default.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
databaseName
The name of the catalog database where the function to be updated is located.
- Parameters:
databaseName
- The name of the catalog database where the function to be updated is located.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
functionName
The name of the function.
- Parameters:
functionName
- The name of the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
functionInput
A
FunctionInput
object that redefines the function in the Data Catalog.- Parameters:
functionInput
- AFunctionInput
object that redefines the function in the Data Catalog.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
functionInput
default UpdateUserDefinedFunctionRequest.Builder functionInput(Consumer<UserDefinedFunctionInput.Builder> functionInput) A
This is a convenience method that creates an instance of theFunctionInput
object that redefines the function in the Data Catalog.UserDefinedFunctionInput.Builder
avoiding the need to create one manually viaUserDefinedFunctionInput.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tofunctionInput(UserDefinedFunctionInput)
.- Parameters:
functionInput
- a consumer that will call methods onUserDefinedFunctionInput.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
overrideConfiguration
UpdateUserDefinedFunctionRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
UpdateUserDefinedFunctionRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-