Interface FlywheelFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FlywheelFilter.Builder,FlywheelFilter>,SdkBuilder<FlywheelFilter.Builder,FlywheelFilter>,SdkPojo
- Enclosing class:
- FlywheelFilter
public static interface FlywheelFilter.Builder extends SdkPojo, CopyableBuilder<FlywheelFilter.Builder,FlywheelFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlywheelFilter.BuildercreationTimeAfter(Instant creationTimeAfter)Filter the flywheels to include flywheels created after the specified time.FlywheelFilter.BuildercreationTimeBefore(Instant creationTimeBefore)Filter the flywheels to include flywheels created before the specified time.FlywheelFilter.Builderstatus(String status)Filter the flywheels based on the flywheel status.FlywheelFilter.Builderstatus(FlywheelStatus status)Filter the flywheels based on the flywheel status.-
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
-
status
FlywheelFilter.Builder status(String status)
Filter the flywheels based on the flywheel status.
- Parameters:
status- Filter the flywheels based on the flywheel status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlywheelStatus,FlywheelStatus
-
status
FlywheelFilter.Builder status(FlywheelStatus status)
Filter the flywheels based on the flywheel status.
- Parameters:
status- Filter the flywheels based on the flywheel status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlywheelStatus,FlywheelStatus
-
creationTimeAfter
FlywheelFilter.Builder creationTimeAfter(Instant creationTimeAfter)
Filter the flywheels to include flywheels created after the specified time.
- Parameters:
creationTimeAfter- Filter the flywheels to include flywheels created after the specified time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTimeBefore
FlywheelFilter.Builder creationTimeBefore(Instant creationTimeBefore)
Filter the flywheels to include flywheels created before the specified time.
- Parameters:
creationTimeBefore- Filter the flywheels to include flywheels created before the specified time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-