Interface SearchTablesByLfTagsRequest.Builder

    • Method Detail

      • nextToken

        SearchTablesByLfTagsRequest.Builder nextToken​(String nextToken)

        A continuation token, if this is not the first call to retrieve this list.

        Parameters:
        nextToken - A continuation token, if this is not the first call to retrieve this list.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • maxResults

        SearchTablesByLfTagsRequest.Builder maxResults​(Integer maxResults)

        The maximum number of results to return.

        Parameters:
        maxResults - The maximum number of results to return.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • catalogId

        SearchTablesByLfTagsRequest.Builder catalogId​(String catalogId)

        The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.

        Parameters:
        catalogId - The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • expression

        SearchTablesByLfTagsRequest.Builder expression​(Collection<LFTag> expression)

        A list of conditions (LFTag structures) to search for in table resources.

        Parameters:
        expression - A list of conditions (LFTag structures) to search for in table resources.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • expression

        SearchTablesByLfTagsRequest.Builder expression​(LFTag... expression)

        A list of conditions (LFTag structures) to search for in table resources.

        Parameters:
        expression - A list of conditions (LFTag structures) to search for in table resources.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • expression

        SearchTablesByLfTagsRequest.Builder expression​(Consumer<LFTag.Builder>... expression)

        A list of conditions (LFTag structures) to search for in table resources.

        This is a convenience method that creates an instance of the LFTag.Builder avoiding the need to create one manually via LFTag.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #expression(List).

        Parameters:
        expression - a consumer that will call methods on LFTag.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #expression(java.util.Collection)