Package org.cdk8s.plus24
Interface HttpGetProbeOptions
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,ProbeOptions
- All Known Implementing Classes:
HttpGetProbeOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.82.0 (build 2d2ddd7)", date="2023-06-06T02:39:24.524Z") @Stability(Stable) public interface HttpGetProbeOptions extends software.amazon.jsii.JsiiSerializable, ProbeOptions
Options forProbe.fromHttpGet()
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
HttpGetProbeOptions.Builder
A builder forHttpGetProbeOptions
static class
HttpGetProbeOptions.Jsii$Proxy
An implementation forHttpGetProbeOptions
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static HttpGetProbeOptions.Builder
builder()
default Number
getPort()
The TCP port to use when sending the GET request.default ConnectionScheme
getScheme()
Scheme to use for connecting to the host (HTTP or HTTPS).-
Methods inherited from interface org.cdk8s.plus24.ProbeOptions
getFailureThreshold, getInitialDelaySeconds, getPeriodSeconds, getSuccessThreshold, getTimeoutSeconds
-
-
-
-
Method Detail
-
getPort
@Stability(Stable) @Nullable default Number getPort()
The TCP port to use when sending the GET request.Default: - defaults to `container.port`.
-
getScheme
@Stability(Stable) @Nullable default ConnectionScheme getScheme()
Scheme to use for connecting to the host (HTTP or HTTPS).Default: ConnectionScheme.HTTP
-
builder
@Stability(Stable) static HttpGetProbeOptions.Builder builder()
- Returns:
- a
HttpGetProbeOptions.Builder
ofHttpGetProbeOptions
-
-