Interface UserDefinedFunctionInput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UserDefinedFunctionInput.Builder,UserDefinedFunctionInput>,SdkBuilder<UserDefinedFunctionInput.Builder,UserDefinedFunctionInput>,SdkPojo
- Enclosing class:
- UserDefinedFunctionInput
@Mutable @NotThreadSafe public static interface UserDefinedFunctionInput.Builder extends SdkPojo, CopyableBuilder<UserDefinedFunctionInput.Builder,UserDefinedFunctionInput>
-
-
Method Summary
-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
functionName
UserDefinedFunctionInput.Builder functionName(String 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.
-
className
UserDefinedFunctionInput.Builder className(String className)
The Java class that contains the function code.
- Parameters:
className- The Java class that contains the function code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ownerName
UserDefinedFunctionInput.Builder ownerName(String ownerName)
The owner of the function.
- Parameters:
ownerName- The owner of the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
functionType
UserDefinedFunctionInput.Builder functionType(String functionType)
The type of the function.
- Parameters:
functionType- The type of the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FunctionType,FunctionType
-
functionType
UserDefinedFunctionInput.Builder functionType(FunctionType functionType)
The type of the function.
- Parameters:
functionType- The type of the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FunctionType,FunctionType
-
ownerType
UserDefinedFunctionInput.Builder ownerType(String ownerType)
The owner type.
- Parameters:
ownerType- The owner type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PrincipalType,PrincipalType
-
ownerType
UserDefinedFunctionInput.Builder ownerType(PrincipalType ownerType)
The owner type.
- Parameters:
ownerType- The owner type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PrincipalType,PrincipalType
-
resourceUris
UserDefinedFunctionInput.Builder resourceUris(Collection<ResourceUri> resourceUris)
The resource URIs for the function.
- Parameters:
resourceUris- The resource URIs for the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceUris
UserDefinedFunctionInput.Builder resourceUris(ResourceUri... resourceUris)
The resource URIs for the function.
- Parameters:
resourceUris- The resource URIs for the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceUris
UserDefinedFunctionInput.Builder resourceUris(Consumer<ResourceUri.Builder>... resourceUris)
The resource URIs for the function.
This is a convenience method that creates an instance of theResourceUri.Builderavoiding the need to create one manually viaResourceUri.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#resourceUris(List.) - Parameters:
resourceUris- a consumer that will call methods onResourceUri.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#resourceUris(java.util.Collection)
-
-