Interface Timing.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Timing.Builder,Timing>,SdkBuilder<Timing.Builder,Timing>,SdkPojo
- Enclosing class:
- Timing
public static interface Timing.Builder extends SdkPojo, CopyableBuilder<Timing.Builder,Timing>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Timing.BuilderfinishTimeMillis(Long finishTimeMillis)The time the job finished transcoding, in epoch milliseconds.Timing.BuilderstartTimeMillis(Long startTimeMillis)The time the job began transcoding, in epoch milliseconds.Timing.BuildersubmitTimeMillis(Long submitTimeMillis)The time the job was submitted to Elastic Transcoder, in epoch milliseconds.-
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
-
submitTimeMillis
Timing.Builder submitTimeMillis(Long submitTimeMillis)
The time the job was submitted to Elastic Transcoder, in epoch milliseconds.
- Parameters:
submitTimeMillis- The time the job was submitted to Elastic Transcoder, in epoch milliseconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startTimeMillis
Timing.Builder startTimeMillis(Long startTimeMillis)
The time the job began transcoding, in epoch milliseconds.
- Parameters:
startTimeMillis- The time the job began transcoding, in epoch milliseconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
finishTimeMillis
Timing.Builder finishTimeMillis(Long finishTimeMillis)
The time the job finished transcoding, in epoch milliseconds.
- Parameters:
finishTimeMillis- The time the job finished transcoding, in epoch milliseconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-