Interface EventTimeRange.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EventTimeRange.Builder,EventTimeRange>,SdkBuilder<EventTimeRange.Builder,EventTimeRange>,SdkPojo
- Enclosing class:
- EventTimeRange
public static interface EventTimeRange.Builder extends SdkPojo, CopyableBuilder<EventTimeRange.Builder,EventTimeRange>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EventTimeRange.BuilderfromTime(Instant fromTime)The time when the event started.EventTimeRange.BuildertoTime(Instant toTime)The time when the event ended.-
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
-
fromTime
EventTimeRange.Builder fromTime(Instant fromTime)
The time when the event started.
- Parameters:
fromTime- The time when the event started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toTime
EventTimeRange.Builder toTime(Instant toTime)
The time when the event ended.
- Parameters:
toTime- The time when the event ended.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-