Interface ListHandshakesForAccountResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListHandshakesForAccountResponse.Builder,ListHandshakesForAccountResponse>,OrganizationsResponse.Builder,SdkBuilder<ListHandshakesForAccountResponse.Builder,ListHandshakesForAccountResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListHandshakesForAccountResponse
public static interface ListHandshakesForAccountResponse.Builder extends OrganizationsResponse.Builder, SdkPojo, CopyableBuilder<ListHandshakesForAccountResponse.Builder,ListHandshakesForAccountResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListHandshakesForAccountResponse.Builderhandshakes(Collection<Handshake> handshakes)A list of Handshake objects with details about each of the handshakes that is associated with the specified account.ListHandshakesForAccountResponse.Builderhandshakes(Consumer<Handshake.Builder>... handshakes)A list of Handshake objects with details about each of the handshakes that is associated with the specified account.ListHandshakesForAccountResponse.Builderhandshakes(Handshake... handshakes)A list of Handshake objects with details about each of the handshakes that is associated with the specified account.ListHandshakesForAccountResponse.BuildernextToken(String nextToken)If present, indicates that more output is available than is included in the current response.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.organizations.model.OrganizationsResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
handshakes
ListHandshakesForAccountResponse.Builder handshakes(Collection<Handshake> handshakes)
A list of Handshake objects with details about each of the handshakes that is associated with the specified account.
- Parameters:
handshakes- A list of Handshake objects with details about each of the handshakes that is associated with the specified account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
handshakes
ListHandshakesForAccountResponse.Builder handshakes(Handshake... handshakes)
A list of Handshake objects with details about each of the handshakes that is associated with the specified account.
- Parameters:
handshakes- A list of Handshake objects with details about each of the handshakes that is associated with the specified account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
handshakes
ListHandshakesForAccountResponse.Builder handshakes(Consumer<Handshake.Builder>... handshakes)
A list of Handshake objects with details about each of the handshakes that is associated with the specified account.
This is a convenience method that creates an instance of theHandshake.Builderavoiding the need to create one manually viaHandshake.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#handshakes(List.) - Parameters:
handshakes- a consumer that will call methods onHandshake.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#handshakes(java.util.Collection)
-
nextToken
ListHandshakesForAccountResponse.Builder nextToken(String nextToken)
If present, indicates that more output is available than is included in the current response. Use this value in the
NextTokenrequest parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until theNextTokenresponse element comes back asnull.- Parameters:
nextToken- If present, indicates that more output is available than is included in the current response. Use this value in theNextTokenrequest parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until theNextTokenresponse element comes back asnull.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-