Interface BeforeEntryConditions.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<BeforeEntryConditions.Builder,
,BeforeEntryConditions> SdkBuilder<BeforeEntryConditions.Builder,
,BeforeEntryConditions> SdkPojo
- Enclosing class:
BeforeEntryConditions
public static interface BeforeEntryConditions.Builder
extends SdkPojo, CopyableBuilder<BeforeEntryConditions.Builder,BeforeEntryConditions>
-
Method Summary
Modifier and TypeMethodDescriptionconditions
(Collection<Condition> conditions) The conditions that are configured as entry conditions.conditions
(Consumer<Condition.Builder>... conditions) The conditions that are configured as entry conditions.conditions
(Condition... conditions) The conditions that are configured as entry conditions.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 Details
-
conditions
The conditions that are configured as entry conditions.
- Parameters:
conditions
- The conditions that are configured as entry conditions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
conditions
The conditions that are configured as entry conditions.
- Parameters:
conditions
- The conditions that are configured as entry conditions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
conditions
The conditions that are configured as entry conditions.
This is a convenience method that creates an instance of theCondition.Builder
avoiding the need to create one manually viaCondition.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toconditions(List<Condition>)
.- Parameters:
conditions
- a consumer that will call methods onCondition.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-