Interface FunctionResponse.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FunctionResponse.Builder,FunctionResponse>,SdkBuilder<FunctionResponse.Builder,FunctionResponse>,SdkPojo
- Enclosing class:
- FunctionResponse
public static interface FunctionResponse.Builder extends SdkPojo, CopyableBuilder<FunctionResponse.Builder,FunctionResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default FunctionResponse.BuilderimplementedBy(Consumer<DataConnector.Builder> implementedBy)The data connector.FunctionResponse.BuilderimplementedBy(DataConnector implementedBy)The data connector.FunctionResponse.BuilderisInherited(Boolean isInherited)Indicates whether this function is inherited.FunctionResponse.BuilderrequiredProperties(String... requiredProperties)The required properties of the function.FunctionResponse.BuilderrequiredProperties(Collection<String> requiredProperties)The required properties of the function.FunctionResponse.Builderscope(String scope)The scope of the function.FunctionResponse.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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
requiredProperties
FunctionResponse.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
FunctionResponse.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
FunctionResponse.Builder scope(String scope)
The scope of the function.
-
scope
FunctionResponse.Builder scope(Scope scope)
The scope of the function.
-
implementedBy
FunctionResponse.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 FunctionResponse.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)
-
isInherited
FunctionResponse.Builder isInherited(Boolean isInherited)
Indicates whether this function is inherited.
- Parameters:
isInherited- Indicates whether this function is inherited.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-