Interface ConnectionHealth.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConnectionHealth.Builder,ConnectionHealth>,SdkBuilder<ConnectionHealth.Builder,ConnectionHealth>,SdkPojo
- Enclosing class:
- ConnectionHealth
public static interface ConnectionHealth.Builder extends SdkPojo, CopyableBuilder<ConnectionHealth.Builder,ConnectionHealth>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectionHealth.Builderstatus(String status)The connection status.ConnectionHealth.Builderstatus(ConnectionStatus status)The connection status.ConnectionHealth.Buildertimestamp(Instant timestamp)The time the status was last updated.ConnectionHealth.Buildertype(String type)The connection type.ConnectionHealth.Buildertype(ConnectionType type)The connection type.-
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
-
type
ConnectionHealth.Builder type(String type)
The connection type.
- Parameters:
type- The connection type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConnectionType,ConnectionType
-
type
ConnectionHealth.Builder type(ConnectionType type)
The connection type.
- Parameters:
type- The connection type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConnectionType,ConnectionType
-
status
ConnectionHealth.Builder status(String status)
The connection status.
- Parameters:
status- The connection status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConnectionStatus,ConnectionStatus
-
status
ConnectionHealth.Builder status(ConnectionStatus status)
The connection status.
- Parameters:
status- The connection status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConnectionStatus,ConnectionStatus
-
timestamp
ConnectionHealth.Builder timestamp(Instant timestamp)
The time the status was last updated.
- Parameters:
timestamp- The time the status was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-