Interface GetKeyPairsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetKeyPairsResponse.Builder,GetKeyPairsResponse>,LightsailResponse.Builder,SdkBuilder<GetKeyPairsResponse.Builder,GetKeyPairsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetKeyPairsResponse
public static interface GetKeyPairsResponse.Builder extends LightsailResponse.Builder, SdkPojo, CopyableBuilder<GetKeyPairsResponse.Builder,GetKeyPairsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetKeyPairsResponse.BuilderkeyPairs(Collection<KeyPair> keyPairs)An array of key-value pairs containing information about the key pairs.GetKeyPairsResponse.BuilderkeyPairs(Consumer<KeyPair.Builder>... keyPairs)An array of key-value pairs containing information about the key pairs.GetKeyPairsResponse.BuilderkeyPairs(KeyPair... keyPairs)An array of key-value pairs containing information about the key pairs.GetKeyPairsResponse.BuildernextPageToken(String nextPageToken)The token to advance to the next page of results from your request.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.lightsail.model.LightsailResponse.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
-
keyPairs
GetKeyPairsResponse.Builder keyPairs(Collection<KeyPair> keyPairs)
An array of key-value pairs containing information about the key pairs.
- Parameters:
keyPairs- An array of key-value pairs containing information about the key pairs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keyPairs
GetKeyPairsResponse.Builder keyPairs(KeyPair... keyPairs)
An array of key-value pairs containing information about the key pairs.
- Parameters:
keyPairs- An array of key-value pairs containing information about the key pairs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keyPairs
GetKeyPairsResponse.Builder keyPairs(Consumer<KeyPair.Builder>... keyPairs)
An array of key-value pairs containing information about the key pairs.
This is a convenience method that creates an instance of theKeyPair.Builderavoiding the need to create one manually viaKeyPair.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#keyPairs(List.) - Parameters:
keyPairs- a consumer that will call methods onKeyPair.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#keyPairs(java.util.Collection)
-
nextPageToken
GetKeyPairsResponse.Builder nextPageToken(String nextPageToken)
The token to advance to the next page of results from your request.
A next page token is not returned if there are no more results to display.
To get the next page of results, perform another
GetKeyPairsrequest and specify the next page token using thepageTokenparameter.- Parameters:
nextPageToken- The token to advance to the next page of results from your request.A next page token is not returned if there are no more results to display.
To get the next page of results, perform another
GetKeyPairsrequest and specify the next page token using thepageTokenparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-