Interface HoursOfOperationOverrideConfig.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<HoursOfOperationOverrideConfig.Builder,
,HoursOfOperationOverrideConfig> SdkBuilder<HoursOfOperationOverrideConfig.Builder,
,HoursOfOperationOverrideConfig> SdkPojo
- Enclosing class:
HoursOfOperationOverrideConfig
@Mutable
@NotThreadSafe
public static interface HoursOfOperationOverrideConfig.Builder
extends SdkPojo, CopyableBuilder<HoursOfOperationOverrideConfig.Builder,HoursOfOperationOverrideConfig>
-
Method Summary
Modifier and TypeMethodDescriptionThe day that the hours of operation override applies to.day
(OverrideDays day) The day that the hours of operation override applies to.endTime
(Consumer<OverrideTimeSlice.Builder> endTime) The end time that your contact center closes if overrides are applied.endTime
(OverrideTimeSlice endTime) The end time that your contact center closes if overrides are applied.startTime
(Consumer<OverrideTimeSlice.Builder> startTime) The start time when your contact center opens if overrides are applied.startTime
(OverrideTimeSlice startTime) The start time when your contact center opens if overrides are applied.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 Details
-
day
The day that the hours of operation override applies to.
- Parameters:
day
- The day that the hours of operation override applies to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
day
The day that the hours of operation override applies to.
- Parameters:
day
- The day that the hours of operation override applies to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
startTime
The start time when your contact center opens if overrides are applied.
- Parameters:
startTime
- The start time when your contact center opens if overrides are applied.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startTime
default HoursOfOperationOverrideConfig.Builder startTime(Consumer<OverrideTimeSlice.Builder> startTime) The start time when your contact center opens if overrides are applied.
This is a convenience method that creates an instance of theOverrideTimeSlice.Builder
avoiding the need to create one manually viaOverrideTimeSlice.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tostartTime(OverrideTimeSlice)
.- Parameters:
startTime
- a consumer that will call methods onOverrideTimeSlice.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
endTime
The end time that your contact center closes if overrides are applied.
- Parameters:
endTime
- The end time that your contact center closes if overrides are applied.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endTime
The end time that your contact center closes if overrides are applied.
This is a convenience method that creates an instance of theOverrideTimeSlice.Builder
avoiding the need to create one manually viaOverrideTimeSlice.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toendTime(OverrideTimeSlice)
.- Parameters:
endTime
- a consumer that will call methods onOverrideTimeSlice.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-