Interface TableLFTagPolicy.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TableLFTagPolicy.Builder,TableLFTagPolicy>,SdkBuilder<TableLFTagPolicy.Builder,TableLFTagPolicy>,SdkPojo
- Enclosing class:
- TableLFTagPolicy
public static interface TableLFTagPolicy.Builder extends SdkPojo, CopyableBuilder<TableLFTagPolicy.Builder,TableLFTagPolicy>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TableLFTagPolicy.Builderexpression(Collection<LFTag> expression)A list of LF-tag conditions that apply to table resources.TableLFTagPolicy.Builderexpression(Consumer<LFTag.Builder>... expression)A list of LF-tag conditions that apply to table resources.TableLFTagPolicy.Builderexpression(LFTag... expression)A list of LF-tag conditions that apply to table resources.-
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, sdkFields
-
-
-
-
Method Detail
-
expression
TableLFTagPolicy.Builder expression(Collection<LFTag> expression)
A list of LF-tag conditions that apply to table resources.
- Parameters:
expression- A list of LF-tag conditions that apply to table resources.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
expression
TableLFTagPolicy.Builder expression(LFTag... expression)
A list of LF-tag conditions that apply to table resources.
- Parameters:
expression- A list of LF-tag conditions that apply to table resources.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
expression
TableLFTagPolicy.Builder expression(Consumer<LFTag.Builder>... expression)
A list of LF-tag conditions that apply to table resources.
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)
-
-