Interface ListExtensionsResponse.Builder
-
- All Superinterfaces:
AppConfigResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListExtensionsResponse.Builder,ListExtensionsResponse>,SdkBuilder<ListExtensionsResponse.Builder,ListExtensionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListExtensionsResponse
public static interface ListExtensionsResponse.Builder extends AppConfigResponse.Builder, SdkPojo, CopyableBuilder<ListExtensionsResponse.Builder,ListExtensionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListExtensionsResponse.Builderitems(Collection<ExtensionSummary> items)The list of available extensions.ListExtensionsResponse.Builderitems(Consumer<ExtensionSummary.Builder>... items)The list of available extensions.ListExtensionsResponse.Builderitems(ExtensionSummary... items)The list of available extensions.ListExtensionsResponse.BuildernextToken(String nextToken)The token for the next set of items to return.-
Methods inherited from interface software.amazon.awssdk.services.appconfig.model.AppConfigResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
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
ListExtensionsResponse.Builder items(Collection<ExtensionSummary> items)
The list of available extensions. The list includes Amazon Web Services authored and user-created extensions.
- Parameters:
items- The list of available extensions. The list includes Amazon Web Services authored and user-created extensions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListExtensionsResponse.Builder items(ExtensionSummary... items)
The list of available extensions. The list includes Amazon Web Services authored and user-created extensions.
- Parameters:
items- The list of available extensions. The list includes Amazon Web Services authored and user-created extensions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListExtensionsResponse.Builder items(Consumer<ExtensionSummary.Builder>... items)
The list of available extensions. The list includes Amazon Web Services authored and user-created extensions.
This is a convenience method that creates an instance of theExtensionSummary.Builderavoiding the need to create one manually viaExtensionSummary.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 onExtensionSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
nextToken
ListExtensionsResponse.Builder nextToken(String nextToken)
The token for the next set of items to return. Use this token to get the next set of results.
- Parameters:
nextToken- The token for the next set of items to return. Use this token to get the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-