Interface ListRegistriesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListRegistriesResponse.Builder,ListRegistriesResponse>,GlueResponse.Builder,SdkBuilder<ListRegistriesResponse.Builder,ListRegistriesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListRegistriesResponse
public static interface ListRegistriesResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<ListRegistriesResponse.Builder,ListRegistriesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListRegistriesResponse.BuildernextToken(String nextToken)A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.ListRegistriesResponse.Builderregistries(Collection<RegistryListItem> registries)An array ofRegistryDetailedListItemobjects containing minimal details of each registry.ListRegistriesResponse.Builderregistries(Consumer<RegistryListItem.Builder>... registries)An array ofRegistryDetailedListItemobjects containing minimal details of each registry.ListRegistriesResponse.Builderregistries(RegistryListItem... registries)An array ofRegistryDetailedListItemobjects containing minimal details of each registry.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.glue.model.GlueResponse.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
-
registries
ListRegistriesResponse.Builder registries(Collection<RegistryListItem> registries)
An array of
RegistryDetailedListItemobjects containing minimal details of each registry.- Parameters:
registries- An array ofRegistryDetailedListItemobjects containing minimal details of each registry.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
registries
ListRegistriesResponse.Builder registries(RegistryListItem... registries)
An array of
RegistryDetailedListItemobjects containing minimal details of each registry.- Parameters:
registries- An array ofRegistryDetailedListItemobjects containing minimal details of each registry.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
registries
ListRegistriesResponse.Builder registries(Consumer<RegistryListItem.Builder>... registries)
An array of
This is a convenience method that creates an instance of theRegistryDetailedListItemobjects containing minimal details of each registry.RegistryListItem.Builderavoiding the need to create one manually viaRegistryListItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#registries(List.) - Parameters:
registries- a consumer that will call methods onRegistryListItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#registries(java.util.Collection)
-
nextToken
ListRegistriesResponse.Builder nextToken(String nextToken)
A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.
- Parameters:
nextToken- A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-