Package org.cdk8s.plus24.k8s
Interface KubePodProps
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
KubePodProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-13T15:58:20.039Z") @Stability(Stable) public interface KubePodProps extends software.amazon.jsii.JsiiSerializable
Pod is a collection of containers that can run on a host.This resource is created by clients and scheduled onto hosts.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
KubePodProps.Builder
A builder forKubePodProps
static class
KubePodProps.Jsii$Proxy
An implementation forKubePodProps
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static KubePodProps.Builder
builder()
default ObjectMeta
getMetadata()
Standard object's metadata.default PodSpec
getSpec()
Specification of the desired behavior of the pod.
-
-
-
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 PodSpec getSpec()
Specification of the desired behavior of the pod.More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
-
builder
@Stability(Stable) static KubePodProps.Builder builder()
- Returns:
- a
KubePodProps.Builder
ofKubePodProps
-
-