Interface ListCustomPluginsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListCustomPluginsResponse.Builder,ListCustomPluginsResponse>,KafkaConnectResponse.Builder,SdkBuilder<ListCustomPluginsResponse.Builder,ListCustomPluginsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListCustomPluginsResponse
public static interface ListCustomPluginsResponse.Builder extends KafkaConnectResponse.Builder, SdkPojo, CopyableBuilder<ListCustomPluginsResponse.Builder,ListCustomPluginsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListCustomPluginsResponse.BuildercustomPlugins(Collection<CustomPluginSummary> customPlugins)An array of custom plugin descriptions.ListCustomPluginsResponse.BuildercustomPlugins(Consumer<CustomPluginSummary.Builder>... customPlugins)An array of custom plugin descriptions.ListCustomPluginsResponse.BuildercustomPlugins(CustomPluginSummary... customPlugins)An array of custom plugin descriptions.ListCustomPluginsResponse.BuildernextToken(String nextToken)If the response of a ListCustomPlugins operation is truncated, it will include a NextToken.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.kafkaconnect.model.KafkaConnectResponse.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
-
customPlugins
ListCustomPluginsResponse.Builder customPlugins(Collection<CustomPluginSummary> customPlugins)
An array of custom plugin descriptions.
- Parameters:
customPlugins- An array of custom plugin descriptions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customPlugins
ListCustomPluginsResponse.Builder customPlugins(CustomPluginSummary... customPlugins)
An array of custom plugin descriptions.
- Parameters:
customPlugins- An array of custom plugin descriptions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customPlugins
ListCustomPluginsResponse.Builder customPlugins(Consumer<CustomPluginSummary.Builder>... customPlugins)
An array of custom plugin descriptions.
This is a convenience method that creates an instance of theCustomPluginSummary.Builderavoiding the need to create one manually viaCustomPluginSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#customPlugins(List.) - Parameters:
customPlugins- a consumer that will call methods onCustomPluginSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#customPlugins(java.util.Collection)
-
nextToken
ListCustomPluginsResponse.Builder nextToken(String nextToken)
If the response of a ListCustomPlugins operation is truncated, it will include a NextToken. Send this NextToken in a subsequent request to continue listing from where the previous operation left off.
- Parameters:
nextToken- If the response of a ListCustomPlugins operation is truncated, it will include a NextToken. Send this NextToken in a subsequent request to continue listing from where the previous operation left off.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-