Interface SearchSchemasResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<SearchSchemasResponse.Builder,SearchSchemasResponse>,SchemasResponse.Builder,SdkBuilder<SearchSchemasResponse.Builder,SearchSchemasResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- SearchSchemasResponse
public static interface SearchSchemasResponse.Builder extends SchemasResponse.Builder, SdkPojo, CopyableBuilder<SearchSchemasResponse.Builder,SearchSchemasResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchSchemasResponse.BuildernextToken(String nextToken)The token that specifies the next page of results to return.SearchSchemasResponse.Builderschemas(Collection<SearchSchemaSummary> schemas)An array of SearchSchemaSummary information.SearchSchemasResponse.Builderschemas(Consumer<SearchSchemaSummary.Builder>... schemas)An array of SearchSchemaSummary information.SearchSchemasResponse.Builderschemas(SearchSchemaSummary... schemas)An array of SearchSchemaSummary information.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.schemas.model.SchemasResponse.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
-
nextToken
SearchSchemasResponse.Builder nextToken(String nextToken)
The token that specifies the next page of results to return. To request the first page, leave NextToken empty. The token will expire in 24 hours, and cannot be shared with other accounts.
- Parameters:
nextToken- The token that specifies the next page of results to return. To request the first page, leave NextToken empty. The token will expire in 24 hours, and cannot be shared with other accounts.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
schemas
SearchSchemasResponse.Builder schemas(Collection<SearchSchemaSummary> schemas)
An array of SearchSchemaSummary information.
- Parameters:
schemas- An array of SearchSchemaSummary information.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
schemas
SearchSchemasResponse.Builder schemas(SearchSchemaSummary... schemas)
An array of SearchSchemaSummary information.
- Parameters:
schemas- An array of SearchSchemaSummary information.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
schemas
SearchSchemasResponse.Builder schemas(Consumer<SearchSchemaSummary.Builder>... schemas)
An array of SearchSchemaSummary information.
This is a convenience method that creates an instance of theSearchSchemaSummary.Builderavoiding the need to create one manually viaSearchSchemaSummary.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 onSearchSchemaSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#schemas(java.util.Collection)
-
-