Interface TimeWindow.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TimeWindow.Builder,TimeWindow>,SdkBuilder<TimeWindow.Builder,TimeWindow>,SdkPojo
- Enclosing class:
- TimeWindow
public static interface TimeWindow.Builder extends SdkPojo, CopyableBuilder<TimeWindow.Builder,TimeWindow>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TimeWindow.BuilderendTime(Instant endTime)The end of the time range from which you wantGetSampledRequeststo return a sample of the requests that your Amazon Web Services resource received.TimeWindow.BuilderstartTime(Instant startTime)The beginning of the time range from which you wantGetSampledRequeststo return a sample of the requests that your Amazon Web Services resource received.-
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
-
startTime
TimeWindow.Builder startTime(Instant startTime)
The beginning of the time range from which you want
GetSampledRequeststo return a sample of the requests that your Amazon Web Services resource received. You must specify the times in Coordinated Universal Time (UTC) format. UTC format includes the special designator,Z. For example,"2016-09-27T14:50Z". You can specify any time range in the previous three hours.- Parameters:
startTime- The beginning of the time range from which you wantGetSampledRequeststo return a sample of the requests that your Amazon Web Services resource received. You must specify the times in Coordinated Universal Time (UTC) format. UTC format includes the special designator,Z. For example,"2016-09-27T14:50Z". You can specify any time range in the previous three hours.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endTime
TimeWindow.Builder endTime(Instant endTime)
The end of the time range from which you want
GetSampledRequeststo return a sample of the requests that your Amazon Web Services resource received. You must specify the times in Coordinated Universal Time (UTC) format. UTC format includes the special designator,Z. For example,"2016-09-27T14:50Z". You can specify any time range in the previous three hours.- Parameters:
endTime- The end of the time range from which you wantGetSampledRequeststo return a sample of the requests that your Amazon Web Services resource received. You must specify the times in Coordinated Universal Time (UTC) format. UTC format includes the special designator,Z. For example,"2016-09-27T14:50Z". You can specify any time range in the previous three hours.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-