public static interface UserDefinedFunctionInput.Builder extends CopyableBuilder<UserDefinedFunctionInput.Builder,UserDefinedFunctionInput>
| Modifier and Type | Method and Description |
|---|---|
UserDefinedFunctionInput.Builder |
className(String className)
The Java class that contains the function code.
|
UserDefinedFunctionInput.Builder |
functionName(String functionName)
The name of the function.
|
UserDefinedFunctionInput.Builder |
ownerName(String ownerName)
The owner of the function.
|
UserDefinedFunctionInput.Builder |
ownerType(PrincipalType ownerType)
The owner type.
|
UserDefinedFunctionInput.Builder |
ownerType(String ownerType)
The owner type.
|
UserDefinedFunctionInput.Builder |
resourceUris(Collection<ResourceUri> resourceUris)
The resource URIs for the function.
|
UserDefinedFunctionInput.Builder |
resourceUris(Consumer<ResourceUri.Builder>... resourceUris)
The resource URIs for the function.
|
UserDefinedFunctionInput.Builder |
resourceUris(ResourceUri... resourceUris)
The resource URIs for the function.
|
copyapply, buildUserDefinedFunctionInput.Builder functionName(String functionName)
The name of the function.
functionName - The name of the function.UserDefinedFunctionInput.Builder className(String className)
The Java class that contains the function code.
className - The Java class that contains the function code.UserDefinedFunctionInput.Builder ownerName(String ownerName)
The owner of the function.
ownerName - The owner of the function.UserDefinedFunctionInput.Builder ownerType(String ownerType)
The owner type.
ownerType - The owner type.PrincipalType,
PrincipalTypeUserDefinedFunctionInput.Builder ownerType(PrincipalType ownerType)
The owner type.
ownerType - The owner type.PrincipalType,
PrincipalTypeUserDefinedFunctionInput.Builder resourceUris(Collection<ResourceUri> resourceUris)
The resource URIs for the function.
resourceUris - The resource URIs for the function.UserDefinedFunctionInput.Builder resourceUris(ResourceUri... resourceUris)
The resource URIs for the function.
resourceUris - The resource URIs for the function.UserDefinedFunctionInput.Builder resourceUris(Consumer<ResourceUri.Builder>... resourceUris)
The resource URIs for the function.
This is a convenience that creates an instance of theList.Builder avoiding the need to
create one manually via List#builder() .
When the Consumer completes, List.Builder#build() is called immediately and its
result is passed to #resourceUris(List) .resourceUris - a consumer that will call methods on List.Builder #resourceUris(List) Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.