Interface ProtectedQueryOutput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ProtectedQueryOutput.Builder,ProtectedQueryOutput>,SdkBuilder<ProtectedQueryOutput.Builder,ProtectedQueryOutput>,SdkPojo
- Enclosing class:
- ProtectedQueryOutput
public static interface ProtectedQueryOutput.Builder extends SdkPojo, CopyableBuilder<ProtectedQueryOutput.Builder,ProtectedQueryOutput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ProtectedQueryOutput.BuildermemberList(Collection<ProtectedQuerySingleMemberOutput> memberList)The list of member Amazon Web Services account(s) that received the results of the query.ProtectedQueryOutput.BuildermemberList(Consumer<ProtectedQuerySingleMemberOutput.Builder>... memberList)The list of member Amazon Web Services account(s) that received the results of the query.ProtectedQueryOutput.BuildermemberList(ProtectedQuerySingleMemberOutput... memberList)The list of member Amazon Web Services account(s) that received the results of the query.default ProtectedQueryOutput.Builders3(Consumer<ProtectedQueryS3Output.Builder> s3)If present, the output for a protected query with an `S3` output type.ProtectedQueryOutput.Builders3(ProtectedQueryS3Output s3)If present, the output 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
ProtectedQueryOutput.Builder s3(ProtectedQueryS3Output s3)
If present, the output for a protected query with an `S3` output type.
- Parameters:
s3- If present, the output 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 ProtectedQueryOutput.Builder s3(Consumer<ProtectedQueryS3Output.Builder> s3)
If present, the output for a protected query with an `S3` output type.
This is a convenience method that creates an instance of theProtectedQueryS3Output.Builderavoiding the need to create one manually viaProtectedQueryS3Output.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3(ProtectedQueryS3Output).- Parameters:
s3- a consumer that will call methods onProtectedQueryS3Output.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3(ProtectedQueryS3Output)
-
memberList
ProtectedQueryOutput.Builder memberList(Collection<ProtectedQuerySingleMemberOutput> memberList)
The list of member Amazon Web Services account(s) that received the results of the query.
- Parameters:
memberList- The list of member Amazon Web Services account(s) that received the results of the query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
memberList
ProtectedQueryOutput.Builder memberList(ProtectedQuerySingleMemberOutput... memberList)
The list of member Amazon Web Services account(s) that received the results of the query.
- Parameters:
memberList- The list of member Amazon Web Services account(s) that received the results of the query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
memberList
ProtectedQueryOutput.Builder memberList(Consumer<ProtectedQuerySingleMemberOutput.Builder>... memberList)
The list of member Amazon Web Services account(s) that received the results of the query.
This is a convenience method that creates an instance of theProtectedQuerySingleMemberOutput.Builderavoiding the need to create one manually viaProtectedQuerySingleMemberOutput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#memberList(List.) - Parameters:
memberList- a consumer that will call methods onProtectedQuerySingleMemberOutput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#memberList(java.util.Collection)
-
-