Package org.cdk8s.plus22
Interface HttpGetProbeOptions
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,ProbeOptions
- All Known Implementing Classes:
HttpGetProbeOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-11T03:06:35.002Z") @Stability(Stable) public interface HttpGetProbeOptions extends software.amazon.jsii.JsiiSerializable, ProbeOptions
Options for `Probe.fromHttpGet()`.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classHttpGetProbeOptions.BuilderA builder forHttpGetProbeOptionsstatic classHttpGetProbeOptions.Jsii$ProxyAn implementation forHttpGetProbeOptions
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static HttpGetProbeOptions.Builderbuilder()default NumbergetPort()The TCP port to use when sending the GET request.default ConnectionSchemegetScheme()Scheme to use for connecting to the host (HTTP or HTTPS).-
Methods inherited from interface org.cdk8s.plus22.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.BuilderofHttpGetProbeOptions
-
-