Interface WorkflowJob
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
WorkflowJob.Jsii$Proxy
@Generated(value="jsii-pacmak/1.96.0 (build 921e240)", date="2024-03-28T21:16:43.063Z") @Stability(Experimental) public interface WorkflowJob extends software.amazon.jsii.JsiiSerializable
(experimental) A Job is part of Workflow.A Job can be created with
Jobor it can be provided by the orb
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classWorkflowJob.BuilderA builder forWorkflowJobstatic classWorkflowJob.Jsii$ProxyAn implementation forWorkflowJob
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static WorkflowJob.Builderbuilder()default List<String>getContext()(experimental) The name of the context(s).default FiltergetFilters()(experimental) Job Filters can have the key branches or tags.StringgetIdentifier()(experimental) name of dynamic key *.default MatrixgetMatrix()default StringgetName()(experimental) A replacement for the job name.default Map<String,Object>getOrbParameters()(experimental) Parameters passed to job when referencing a job from orb.default List<String>getRequires()(experimental) A list of jobs that must succeed for the job to start.default JobTypegetType()(experimental) A job may have a type of approval indicating it must be manually approved before downstream jobs may proceed.
-
-
-
Method Detail
-
getIdentifier
@Stability(Experimental) @NotNull String getIdentifier()
(experimental) name of dynamic key *.
-
getContext
@Stability(Experimental) @Nullable default List<String> getContext()
(experimental) The name of the context(s).The initial default name is org-global. Each context name must be unique.
-
getFilters
@Stability(Experimental) @Nullable default Filter getFilters()
(experimental) Job Filters can have the key branches or tags.
-
getMatrix
@Stability(Experimental) @Nullable default Matrix getMatrix()
-
getName
@Stability(Experimental) @Nullable default String getName()
(experimental) A replacement for the job name.Useful when calling a job multiple times
-
getOrbParameters
@Stability(Experimental) @Nullable default Map<String,Object> getOrbParameters()
(experimental) Parameters passed to job when referencing a job from orb.
-
getRequires
@Stability(Experimental) @Nullable default List<String> getRequires()
(experimental) A list of jobs that must succeed for the job to start.
-
getType
@Stability(Experimental) @Nullable default JobType getType()
(experimental) A job may have a type of approval indicating it must be manually approved before downstream jobs may proceed.
-
builder
@Stability(Experimental) static WorkflowJob.Builder builder()
- Returns:
- a
WorkflowJob.BuilderofWorkflowJob
-
-