Interface FunctionRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FunctionRequest.Builder,FunctionRequest>,SdkBuilder<FunctionRequest.Builder,FunctionRequest>,SdkPojo
- Enclosing class:
- FunctionRequest
public static interface FunctionRequest.Builder extends SdkPojo, CopyableBuilder<FunctionRequest.Builder,FunctionRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default FunctionRequest.BuilderimplementedBy(Consumer<DataConnector.Builder> implementedBy)The data connector.FunctionRequest.BuilderimplementedBy(DataConnector implementedBy)The data connector.FunctionRequest.BuilderrequiredProperties(String... requiredProperties)The required properties of the function.FunctionRequest.BuilderrequiredProperties(Collection<String> requiredProperties)The required properties of the function.FunctionRequest.Builderscope(String scope)The scope of the function.FunctionRequest.Builderscope(Scope scope)The scope of 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, sdkFields
-
-
-
-
Method Detail
-
requiredProperties
FunctionRequest.Builder requiredProperties(Collection<String> requiredProperties)
The required properties of the function.
- Parameters:
requiredProperties- The required properties of the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
requiredProperties
FunctionRequest.Builder requiredProperties(String... requiredProperties)
The required properties of the function.
- Parameters:
requiredProperties- The required properties of the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scope
FunctionRequest.Builder scope(String scope)
The scope of the function.
-
scope
FunctionRequest.Builder scope(Scope scope)
The scope of the function.
-
implementedBy
FunctionRequest.Builder implementedBy(DataConnector implementedBy)
The data connector.
- Parameters:
implementedBy- The data connector.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
implementedBy
default FunctionRequest.Builder implementedBy(Consumer<DataConnector.Builder> implementedBy)
The data connector.
This is a convenience method that creates an instance of theDataConnector.Builderavoiding the need to create one manually viaDataConnector.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toimplementedBy(DataConnector).- Parameters:
implementedBy- a consumer that will call methods onDataConnector.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
implementedBy(DataConnector)
-
-