Interface GetLfTagExpressionResponse.Builder

    • Method Detail

      • name

        GetLfTagExpressionResponse.Builder name​(String name)

        The name for the LF-Tag expression.

        Parameters:
        name - The name for the LF-Tag expression.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • description

        GetLfTagExpressionResponse.Builder description​(String description)

        The description with information about the LF-Tag expression.

        Parameters:
        description - The description with information about the LF-Tag expression.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • catalogId

        GetLfTagExpressionResponse.Builder catalogId​(String catalogId)

        The identifier for the Data Catalog. By default, the account ID in which the LF-Tag expression is saved.

        Parameters:
        catalogId - The identifier for the Data Catalog. By default, the account ID in which the LF-Tag expression is saved.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • expression

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

        The body of the LF-Tag expression. It is composed of one or more LF-Tag key-value pairs.

        Parameters:
        expression - The body of the LF-Tag expression. It is composed of one or more LF-Tag key-value pairs.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • expression

        GetLfTagExpressionResponse.Builder expression​(LFTag... expression)

        The body of the LF-Tag expression. It is composed of one or more LF-Tag key-value pairs.

        Parameters:
        expression - The body of the LF-Tag expression. It is composed of one or more LF-Tag key-value pairs.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • expression

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

        The body of the LF-Tag expression. It is composed of one or more LF-Tag key-value pairs.

        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)