Interface TimeCondition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TimeCondition.Builder,TimeCondition>,SdkBuilder<TimeCondition.Builder,TimeCondition>,SdkPojo
- Enclosing class:
- TimeCondition
public static interface TimeCondition.Builder extends SdkPojo, CopyableBuilder<TimeCondition.Builder,TimeCondition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TimeCondition.Builderoperator(String operator)A string that defines what values will be returned.TimeCondition.Builderoperator(TimeConditionOperator operator)A string that defines what values will be returned.TimeCondition.Buildervalue(Instant value)This is the timestamp value of the time condition.-
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
-
value
TimeCondition.Builder value(Instant value)
This is the timestamp value of the time condition.
- Parameters:
value- This is the timestamp value of the time condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operator
TimeCondition.Builder operator(String operator)
A string that defines what values will be returned.
If this is included, avoid combinations of operators that will return all possible values. For example, including both
EQUALS_TOandNOT_EQUALS_TOwith a value of4will return all values.- Parameters:
operator- A string that defines what values will be returned.If this is included, avoid combinations of operators that will return all possible values. For example, including both
EQUALS_TOandNOT_EQUALS_TOwith a value of4will return all values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TimeConditionOperator,TimeConditionOperator
-
operator
TimeCondition.Builder operator(TimeConditionOperator operator)
A string that defines what values will be returned.
If this is included, avoid combinations of operators that will return all possible values. For example, including both
EQUALS_TOandNOT_EQUALS_TOwith a value of4will return all values.- Parameters:
operator- A string that defines what values will be returned.If this is included, avoid combinations of operators that will return all possible values. For example, including both
EQUALS_TOandNOT_EQUALS_TOwith a value of4will return all values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TimeConditionOperator,TimeConditionOperator
-
-