Interface ProtectedQueryOutputConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ProtectedQueryOutputConfiguration.Builder,ProtectedQueryOutputConfiguration>,SdkBuilder<ProtectedQueryOutputConfiguration.Builder,ProtectedQueryOutputConfiguration>,SdkPojo
- Enclosing class:
- ProtectedQueryOutputConfiguration
public static interface ProtectedQueryOutputConfiguration.Builder extends SdkPojo, CopyableBuilder<ProtectedQueryOutputConfiguration.Builder,ProtectedQueryOutputConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ProtectedQueryOutputConfiguration.Builders3(Consumer<ProtectedQueryS3OutputConfiguration.Builder> s3)Required configuration for a protected query with an `S3` output type.ProtectedQueryOutputConfiguration.Builders3(ProtectedQueryS3OutputConfiguration s3)Required configuration for a protected query with an `S3` output type.-
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
-
s3
ProtectedQueryOutputConfiguration.Builder s3(ProtectedQueryS3OutputConfiguration s3)
Required configuration for a protected query with an `S3` output type.
- Parameters:
s3- Required configuration for a protected query with an `S3` output type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3
default ProtectedQueryOutputConfiguration.Builder s3(Consumer<ProtectedQueryS3OutputConfiguration.Builder> s3)
Required configuration for a protected query with an `S3` output type.
This is a convenience method that creates an instance of theProtectedQueryS3OutputConfiguration.Builderavoiding the need to create one manually viaProtectedQueryS3OutputConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3(ProtectedQueryS3OutputConfiguration).- Parameters:
s3- a consumer that will call methods onProtectedQueryS3OutputConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3(ProtectedQueryS3OutputConfiguration)
-
-