Interface CanaryTimeline.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CanaryTimeline.Builder,CanaryTimeline>,SdkBuilder<CanaryTimeline.Builder,CanaryTimeline>,SdkPojo
- Enclosing class:
- CanaryTimeline
public static interface CanaryTimeline.Builder extends SdkPojo, CopyableBuilder<CanaryTimeline.Builder,CanaryTimeline>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CanaryTimeline.Buildercreated(Instant created)The date and time the canary was created.CanaryTimeline.BuilderlastModified(Instant lastModified)The date and time the canary was most recently modified.CanaryTimeline.BuilderlastStarted(Instant lastStarted)The date and time that the canary's most recent run started.CanaryTimeline.BuilderlastStopped(Instant lastStopped)The date and time that the canary's most recent run 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
-
created
CanaryTimeline.Builder created(Instant created)
The date and time the canary was created.
- Parameters:
created- The date and time the canary was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModified
CanaryTimeline.Builder lastModified(Instant lastModified)
The date and time the canary was most recently modified.
- Parameters:
lastModified- The date and time the canary was most recently modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastStarted
CanaryTimeline.Builder lastStarted(Instant lastStarted)
The date and time that the canary's most recent run started.
- Parameters:
lastStarted- The date and time that the canary's most recent run started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastStopped
CanaryTimeline.Builder lastStopped(Instant lastStopped)
The date and time that the canary's most recent run ended.
- Parameters:
lastStopped- The date and time that the canary's most recent run ended.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-