Interface GetSetupHistoryResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetSetupHistoryResponse.Builder,GetSetupHistoryResponse>,LightsailResponse.Builder,SdkBuilder<GetSetupHistoryResponse.Builder,GetSetupHistoryResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetSetupHistoryResponse
public static interface GetSetupHistoryResponse.Builder extends LightsailResponse.Builder, SdkPojo, CopyableBuilder<GetSetupHistoryResponse.Builder,GetSetupHistoryResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetSetupHistoryResponse.BuildernextPageToken(String nextPageToken)The token to advance to the next page of results from your request.GetSetupHistoryResponse.BuildersetupHistory(Collection<SetupHistory> setupHistory)The historical information that's returned.GetSetupHistoryResponse.BuildersetupHistory(Consumer<SetupHistory.Builder>... setupHistory)The historical information that's returned.GetSetupHistoryResponse.BuildersetupHistory(SetupHistory... setupHistory)The historical information that's returned.-
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
-
setupHistory
GetSetupHistoryResponse.Builder setupHistory(Collection<SetupHistory> setupHistory)
The historical information that's returned.
- Parameters:
setupHistory- The historical information that's returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setupHistory
GetSetupHistoryResponse.Builder setupHistory(SetupHistory... setupHistory)
The historical information that's returned.
- Parameters:
setupHistory- The historical information that's returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setupHistory
GetSetupHistoryResponse.Builder setupHistory(Consumer<SetupHistory.Builder>... setupHistory)
The historical information that's returned.
This is a convenience method that creates an instance of theSetupHistory.Builderavoiding the need to create one manually viaSetupHistory.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#setupHistory(List.) - Parameters:
setupHistory- a consumer that will call methods onSetupHistory.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#setupHistory(java.util.Collection)
-
nextPageToken
GetSetupHistoryResponse.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
GetSetupHistoryrequest and specify the next page token using the pageToken parameter.- 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
GetSetupHistoryrequest and specify the next page token using the pageToken parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-