Interface ListChannelsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListChannelsResponse.Builder,ListChannelsResponse>,MediaPackageV2Response.Builder,SdkBuilder<ListChannelsResponse.Builder,ListChannelsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListChannelsResponse
public static interface ListChannelsResponse.Builder extends MediaPackageV2Response.Builder, SdkPojo, CopyableBuilder<ListChannelsResponse.Builder,ListChannelsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListChannelsResponse.Builderitems(Collection<ChannelListConfiguration> items)The objects being returned.ListChannelsResponse.Builderitems(Consumer<ChannelListConfiguration.Builder>... items)The objects being returned.ListChannelsResponse.Builderitems(ChannelListConfiguration... items)The objects being returned.ListChannelsResponse.BuildernextToken(String nextToken)The pagination token from the GET list request.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.mediapackagev2.model.MediaPackageV2Response.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
-
items
ListChannelsResponse.Builder items(Collection<ChannelListConfiguration> items)
The objects being returned.
- Parameters:
items- The objects being returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListChannelsResponse.Builder items(ChannelListConfiguration... items)
The objects being returned.
- Parameters:
items- The objects being returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListChannelsResponse.Builder items(Consumer<ChannelListConfiguration.Builder>... items)
The objects being returned.
This is a convenience method that creates an instance of theChannelListConfiguration.Builderavoiding the need to create one manually viaChannelListConfiguration.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 onChannelListConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
nextToken
ListChannelsResponse.Builder nextToken(String nextToken)
The pagination token from the GET list request.
- Parameters:
nextToken- The pagination token from the GET list request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-