Interface ListSchemasResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListSchemasResponse.Builder,ListSchemasResponse>,GlueResponse.Builder,SdkBuilder<ListSchemasResponse.Builder,ListSchemasResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListSchemasResponse
public static interface ListSchemasResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<ListSchemasResponse.Builder,ListSchemasResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListSchemasResponse.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.ListSchemasResponse.Builderschemas(Collection<SchemaListItem> schemas)An array ofSchemaListItemobjects containing details of each schema.ListSchemasResponse.Builderschemas(Consumer<SchemaListItem.Builder>... schemas)An array ofSchemaListItemobjects containing details of each schema.ListSchemasResponse.Builderschemas(SchemaListItem... schemas)An array ofSchemaListItemobjects containing details of each schema.-
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
-
schemas
ListSchemasResponse.Builder schemas(Collection<SchemaListItem> schemas)
An array of
SchemaListItemobjects containing details of each schema.- Parameters:
schemas- An array ofSchemaListItemobjects containing details of each schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
schemas
ListSchemasResponse.Builder schemas(SchemaListItem... schemas)
An array of
SchemaListItemobjects containing details of each schema.- Parameters:
schemas- An array ofSchemaListItemobjects containing details of each schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
schemas
ListSchemasResponse.Builder schemas(Consumer<SchemaListItem.Builder>... schemas)
An array of
This is a convenience method that creates an instance of theSchemaListItemobjects containing details of each schema.SchemaListItem.Builderavoiding the need to create one manually viaSchemaListItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#schemas(List.) - Parameters:
schemas- a consumer that will call methods onSchemaListItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#schemas(java.util.Collection)
-
nextToken
ListSchemasResponse.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.
-
-