Interface UserDefinedFunctionInput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UserDefinedFunctionInput.Builder,UserDefinedFunctionInput>,SdkBuilder<UserDefinedFunctionInput.Builder,UserDefinedFunctionInput>,SdkPojo
- Enclosing class:
- UserDefinedFunctionInput
public static interface UserDefinedFunctionInput.Builder extends SdkPojo, CopyableBuilder<UserDefinedFunctionInput.Builder,UserDefinedFunctionInput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserDefinedFunctionInput.BuilderclassName(String className)The Java class that contains the function code.UserDefinedFunctionInput.BuilderfunctionName(String functionName)The name of the function.UserDefinedFunctionInput.BuilderownerName(String ownerName)The owner of the function.UserDefinedFunctionInput.BuilderownerType(String ownerType)The owner type.UserDefinedFunctionInput.BuilderownerType(PrincipalType ownerType)The owner type.UserDefinedFunctionInput.BuilderresourceUris(Collection<ResourceUri> resourceUris)The resource URIs for the function.UserDefinedFunctionInput.BuilderresourceUris(Consumer<ResourceUri.Builder>... resourceUris)The resource URIs for the function.UserDefinedFunctionInput.BuilderresourceUris(ResourceUri... resourceUris)The resource URIs for the function.-
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.
-
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)
-
-