Package org.cdk8s.plus23.k8s
Interface JobTemplateSpec
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
JobTemplateSpec.Jsii$Proxy
@Generated(value="jsii-pacmak/1.69.0 (build f656c31)", date="2022-10-15T03:08:35.345Z") @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 class
JobTemplateSpec.Builder
A builder forJobTemplateSpec
static class
JobTemplateSpec.Jsii$Proxy
An implementation forJobTemplateSpec
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static JobTemplateSpec.Builder
builder()
default ObjectMeta
getMetadata()
Standard object's metadata of the jobs created from this template.default JobSpec
getSpec()
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.Builder
ofJobTemplateSpec
-
-