Package org.cdk8s.plus25.k8s
Interface KubeIngressClassProps
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
KubeIngressClassProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.648Z") @Stability(Stable) public interface KubeIngressClassProps extends software.amazon.jsii.JsiiSerializable
IngressClass represents the class of the Ingress, referenced by the Ingress Spec.The
ingressclass.kubernetes.io/is-default-classannotation can be used to indicate that an IngressClass should be considered default. When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classKubeIngressClassProps.BuilderA builder forKubeIngressClassPropsstatic classKubeIngressClassProps.Jsii$ProxyAn implementation forKubeIngressClassProps
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static KubeIngressClassProps.Builderbuilder()default ObjectMetagetMetadata()Standard object's metadata.default IngressClassSpecgetSpec()Spec is the desired state of the IngressClass.
-
-
-
Method Detail
-
getMetadata
@Stability(Stable) @Nullable default ObjectMeta getMetadata()
Standard object's metadata.More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
-
getSpec
@Stability(Stable) @Nullable default IngressClassSpec getSpec()
Spec is the desired state of the IngressClass.More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
-
builder
@Stability(Stable) static KubeIngressClassProps.Builder builder()
- Returns:
- a
KubeIngressClassProps.BuilderofKubeIngressClassProps
-
-