Interface ListStreamingSessionBackupsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListStreamingSessionBackupsResponse.Builder,ListStreamingSessionBackupsResponse>,NimbleResponse.Builder,SdkBuilder<ListStreamingSessionBackupsResponse.Builder,ListStreamingSessionBackupsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListStreamingSessionBackupsResponse
public static interface ListStreamingSessionBackupsResponse.Builder extends NimbleResponse.Builder, SdkPojo, CopyableBuilder<ListStreamingSessionBackupsResponse.Builder,ListStreamingSessionBackupsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListStreamingSessionBackupsResponse.BuildernextToken(String nextToken)The token for the next set of results, or null if there are no more results.ListStreamingSessionBackupsResponse.BuilderstreamingSessionBackups(Collection<StreamingSessionBackup> streamingSessionBackups)Information about the streaming session backups.ListStreamingSessionBackupsResponse.BuilderstreamingSessionBackups(Consumer<StreamingSessionBackup.Builder>... streamingSessionBackups)Information about the streaming session backups.ListStreamingSessionBackupsResponse.BuilderstreamingSessionBackups(StreamingSessionBackup... streamingSessionBackups)Information about the streaming session backups.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.nimble.model.NimbleResponse.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
-
nextToken
ListStreamingSessionBackupsResponse.Builder nextToken(String nextToken)
The token for the next set of results, or null if there are no more results.
- Parameters:
nextToken- The token for the next set of results, or null if there are no more results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
streamingSessionBackups
ListStreamingSessionBackupsResponse.Builder streamingSessionBackups(Collection<StreamingSessionBackup> streamingSessionBackups)
Information about the streaming session backups.
- Parameters:
streamingSessionBackups- Information about the streaming session backups.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
streamingSessionBackups
ListStreamingSessionBackupsResponse.Builder streamingSessionBackups(StreamingSessionBackup... streamingSessionBackups)
Information about the streaming session backups.
- Parameters:
streamingSessionBackups- Information about the streaming session backups.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
streamingSessionBackups
ListStreamingSessionBackupsResponse.Builder streamingSessionBackups(Consumer<StreamingSessionBackup.Builder>... streamingSessionBackups)
Information about the streaming session backups.
This is a convenience method that creates an instance of theStreamingSessionBackup.Builderavoiding the need to create one manually viaStreamingSessionBackup.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#streamingSessionBackups(List.) - Parameters:
streamingSessionBackups- a consumer that will call methods onStreamingSessionBackup.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#streamingSessionBackups(java.util.Collection)
-
-