Interface ListCrawlsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListCrawlsResponse.Builder,ListCrawlsResponse>,GlueResponse.Builder,SdkBuilder<ListCrawlsResponse.Builder,ListCrawlsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListCrawlsResponse
public static interface ListCrawlsResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<ListCrawlsResponse.Builder,ListCrawlsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListCrawlsResponse.Buildercrawls(Collection<CrawlerHistory> crawls)A list ofCrawlerHistoryobjects representing the crawl runs that meet your criteria.ListCrawlsResponse.Buildercrawls(Consumer<CrawlerHistory.Builder>... crawls)A list ofCrawlerHistoryobjects representing the crawl runs that meet your criteria.ListCrawlsResponse.Buildercrawls(CrawlerHistory... crawls)A list ofCrawlerHistoryobjects representing the crawl runs that meet your criteria.ListCrawlsResponse.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.-
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
-
crawls
ListCrawlsResponse.Builder crawls(Collection<CrawlerHistory> crawls)
A list of
CrawlerHistoryobjects representing the crawl runs that meet your criteria.- Parameters:
crawls- A list ofCrawlerHistoryobjects representing the crawl runs that meet your criteria.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
crawls
ListCrawlsResponse.Builder crawls(CrawlerHistory... crawls)
A list of
CrawlerHistoryobjects representing the crawl runs that meet your criteria.- Parameters:
crawls- A list ofCrawlerHistoryobjects representing the crawl runs that meet your criteria.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
crawls
ListCrawlsResponse.Builder crawls(Consumer<CrawlerHistory.Builder>... crawls)
A list of
This is a convenience method that creates an instance of theCrawlerHistoryobjects representing the crawl runs that meet your criteria.CrawlerHistory.Builderavoiding the need to create one manually viaCrawlerHistory.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#crawls(List.) - Parameters:
crawls- a consumer that will call methods onCrawlerHistory.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#crawls(java.util.Collection)
-
nextToken
ListCrawlsResponse.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.
-
-