Interface ListStudiosResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListStudiosResponse.Builder,ListStudiosResponse>,NimbleResponse.Builder,SdkBuilder<ListStudiosResponse.Builder,ListStudiosResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListStudiosResponse
public static interface ListStudiosResponse.Builder extends NimbleResponse.Builder, SdkPojo, CopyableBuilder<ListStudiosResponse.Builder,ListStudiosResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListStudiosResponse.BuildernextToken(String nextToken)The token for the next set of results, or null if there are no more results.ListStudiosResponse.Builderstudios(Collection<Studio> studios)A collection of studios.ListStudiosResponse.Builderstudios(Consumer<Studio.Builder>... studios)A collection of studios.ListStudiosResponse.Builderstudios(Studio... studios)A collection of studios.-
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
ListStudiosResponse.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.
-
studios
ListStudiosResponse.Builder studios(Collection<Studio> studios)
A collection of studios.
- Parameters:
studios- A collection of studios.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
studios
ListStudiosResponse.Builder studios(Studio... studios)
A collection of studios.
- Parameters:
studios- A collection of studios.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
studios
ListStudiosResponse.Builder studios(Consumer<Studio.Builder>... studios)
A collection of studios.
This is a convenience method that creates an instance of theStudio.Builderavoiding the need to create one manually viaStudio.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#studios(List.) - Parameters:
studios- a consumer that will call methods onStudio.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#studios(java.util.Collection)
-
-