Interface ProtectedQueryResult.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ProtectedQueryResult.Builder,ProtectedQueryResult>,SdkBuilder<ProtectedQueryResult.Builder,ProtectedQueryResult>,SdkPojo
- Enclosing class:
- ProtectedQueryResult
public static interface ProtectedQueryResult.Builder extends SdkPojo, CopyableBuilder<ProtectedQueryResult.Builder,ProtectedQueryResult>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ProtectedQueryResult.Builderoutput(Consumer<ProtectedQueryOutput.Builder> output)The output of the protected query.ProtectedQueryResult.Builderoutput(ProtectedQueryOutput output)The output of the protected query.-
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
-
output
ProtectedQueryResult.Builder output(ProtectedQueryOutput output)
The output of the protected query.
- Parameters:
output- The output of the protected query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
output
default ProtectedQueryResult.Builder output(Consumer<ProtectedQueryOutput.Builder> output)
The output of the protected query.
This is a convenience method that creates an instance of theProtectedQueryOutput.Builderavoiding the need to create one manually viaProtectedQueryOutput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tooutput(ProtectedQueryOutput).- Parameters:
output- a consumer that will call methods onProtectedQueryOutput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
output(ProtectedQueryOutput)
-
-