Interface LFTagExpression.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LFTagExpression.Builder,LFTagExpression>,SdkBuilder<LFTagExpression.Builder,LFTagExpression>,SdkPojo
- Enclosing class:
- LFTagExpression
public static interface LFTagExpression.Builder extends SdkPojo, CopyableBuilder<LFTagExpression.Builder,LFTagExpression>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LFTagExpression.BuildercatalogId(String catalogId)The identifier for the Data Catalog.LFTagExpression.Builderdescription(String description)A structure that contains information about the LF-Tag expression.LFTagExpression.Builderexpression(Collection<LFTag> expression)A logical expression composed of one or more LF-Tags.LFTagExpression.Builderexpression(Consumer<LFTag.Builder>... expression)A logical expression composed of one or more LF-Tags.LFTagExpression.Builderexpression(LFTag... expression)A logical expression composed of one or more LF-Tags.LFTagExpression.Buildername(String name)The name for saved the LF-Tag expression.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
LFTagExpression.Builder name(String name)
The name for saved the LF-Tag expression.
- Parameters:
name- The name for saved the LF-Tag expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
LFTagExpression.Builder description(String description)
A structure that contains information about the LF-Tag expression.
- Parameters:
description- A structure that contains information about the LF-Tag expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
catalogId
LFTagExpression.Builder catalogId(String catalogId)
The identifier for the Data Catalog. By default, the account ID.
- Parameters:
catalogId- The identifier for the Data Catalog. By default, the account ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
expression
LFTagExpression.Builder expression(Collection<LFTag> expression)
A logical expression composed of one or more LF-Tags.
- Parameters:
expression- A logical expression composed of one or more LF-Tags.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
expression
LFTagExpression.Builder expression(LFTag... expression)
A logical expression composed of one or more LF-Tags.
- Parameters:
expression- A logical expression composed of one or more LF-Tags.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
expression
LFTagExpression.Builder expression(Consumer<LFTag.Builder>... expression)
A logical expression composed of one or more LF-Tags.
This is a convenience method that creates an instance of theLFTag.Builderavoiding the need to create one manually viaLFTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#expression(List.) - Parameters:
expression- a consumer that will call methods onLFTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#expression(java.util.Collection)
-
-