Interface ListPlaybackConfigurationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListPlaybackConfigurationsResponse.Builder,ListPlaybackConfigurationsResponse>,MediaTailorResponse.Builder,SdkBuilder<ListPlaybackConfigurationsResponse.Builder,ListPlaybackConfigurationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListPlaybackConfigurationsResponse
public static interface ListPlaybackConfigurationsResponse.Builder extends MediaTailorResponse.Builder, SdkPojo, CopyableBuilder<ListPlaybackConfigurationsResponse.Builder,ListPlaybackConfigurationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListPlaybackConfigurationsResponse.Builderitems(Collection<PlaybackConfiguration> items)Array of playback configurations.ListPlaybackConfigurationsResponse.Builderitems(Consumer<PlaybackConfiguration.Builder>... items)Array of playback configurations.ListPlaybackConfigurationsResponse.Builderitems(PlaybackConfiguration... items)Array of playback configurations.ListPlaybackConfigurationsResponse.BuildernextToken(String nextToken)Pagination token returned by the GET list request when results exceed the maximum allowed.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.mediatailor.model.MediaTailorResponse.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
items
ListPlaybackConfigurationsResponse.Builder items(Collection<PlaybackConfiguration> items)
Array of playback configurations. This might be all the available configurations or a subset, depending on the settings that you provide and the total number of configurations stored.
- Parameters:
items- Array of playback configurations. This might be all the available configurations or a subset, depending on the settings that you provide and the total number of configurations stored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListPlaybackConfigurationsResponse.Builder items(PlaybackConfiguration... items)
Array of playback configurations. This might be all the available configurations or a subset, depending on the settings that you provide and the total number of configurations stored.
- Parameters:
items- Array of playback configurations. This might be all the available configurations or a subset, depending on the settings that you provide and the total number of configurations stored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListPlaybackConfigurationsResponse.Builder items(Consumer<PlaybackConfiguration.Builder>... items)
Array of playback configurations. This might be all the available configurations or a subset, depending on the settings that you provide and the total number of configurations stored.
This is a convenience method that creates an instance of thePlaybackConfiguration.Builderavoiding the need to create one manually viaPlaybackConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#items(List.) - Parameters:
items- a consumer that will call methods onPlaybackConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
nextToken
ListPlaybackConfigurationsResponse.Builder nextToken(String nextToken)
Pagination token returned by the GET list request when results exceed the maximum allowed. Use the token to fetch the next page of results.
- Parameters:
nextToken- Pagination token returned by the GET list request when results exceed the maximum allowed. Use the token to fetch the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-