Package org.cdk8s.plus28.k8s
Interface HttpHeader
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
HttpHeader.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-03T12:13:25.694Z") @Stability(Stable) public interface HttpHeader extends software.amazon.jsii.JsiiSerializable
HTTPHeader describes a custom header to be used in HTTP probes.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classHttpHeader.BuilderA builder forHttpHeaderstatic classHttpHeader.Jsii$ProxyAn implementation forHttpHeader
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static HttpHeader.Builderbuilder()StringgetName()The header field name.StringgetValue()The header field value.
-
-
-
Method Detail
-
getName
@Stability(Stable) @NotNull String getName()
The header field name.This will be canonicalized upon output, so case-variant names will be understood as the same header.
-
getValue
@Stability(Stable) @NotNull String getValue()
The header field value.
-
builder
@Stability(Stable) static HttpHeader.Builder builder()
- Returns:
- a
HttpHeader.BuilderofHttpHeader
-
-