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.Buildermember(Consumer<ProtectedQueryMemberOutputConfiguration.Builder> member)Required configuration for a protected query with amemberoutput type.ProtectedQueryOutputConfiguration.Buildermember(ProtectedQueryMemberOutputConfiguration member)Required configuration for a protected query with amemberoutput type.default ProtectedQueryOutputConfiguration.Builders3(Consumer<ProtectedQueryS3OutputConfiguration.Builder> s3)Required configuration for a protected query with ans3output type.ProtectedQueryOutputConfiguration.Builders3(ProtectedQueryS3OutputConfiguration s3)Required configuration for a protected query with ans3output 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
s3
ProtectedQueryOutputConfiguration.Builder s3(ProtectedQueryS3OutputConfiguration s3)
Required configuration for a protected query with an
s3output type.- Parameters:
s3- Required configuration for a protected query with ans3output 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
This is a convenience method that creates an instance of thes3output type.ProtectedQueryS3OutputConfiguration.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)
-
member
ProtectedQueryOutputConfiguration.Builder member(ProtectedQueryMemberOutputConfiguration member)
Required configuration for a protected query with a
memberoutput type.- Parameters:
member- Required configuration for a protected query with amemberoutput type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
member
default ProtectedQueryOutputConfiguration.Builder member(Consumer<ProtectedQueryMemberOutputConfiguration.Builder> member)
Required configuration for a protected query with a
This is a convenience method that creates an instance of thememberoutput type.ProtectedQueryMemberOutputConfiguration.Builderavoiding the need to create one manually viaProtectedQueryMemberOutputConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tomember(ProtectedQueryMemberOutputConfiguration).- Parameters:
member- a consumer that will call methods onProtectedQueryMemberOutputConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
member(ProtectedQueryMemberOutputConfiguration)
-
-