Package org.cdk8s.plus25.k8s
Interface JobTemplateSpec
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
JobTemplateSpec.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.561Z") @Stability(Stable) public interface JobTemplateSpec extends software.amazon.jsii.JsiiSerializable
JobTemplateSpec describes the data a Job should have when created from a template.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classJobTemplateSpec.BuilderA builder forJobTemplateSpecstatic classJobTemplateSpec.Jsii$ProxyAn implementation forJobTemplateSpec
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static JobTemplateSpec.Builderbuilder()default ObjectMetagetMetadata()Standard object's metadata of the jobs created from this template.default JobSpecgetSpec()Specification of the desired behavior of the job.
-
-
-
Method Detail
-
getMetadata
@Stability(Stable) @Nullable default ObjectMeta getMetadata()
Standard object's metadata of the jobs created from this template.More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
-
getSpec
@Stability(Stable) @Nullable default JobSpec getSpec()
Specification of the desired behavior of the job.More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
-
builder
@Stability(Stable) static JobTemplateSpec.Builder builder()
- Returns:
- a
JobTemplateSpec.BuilderofJobTemplateSpec
-
-