Interface Matrix
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
Matrix.Jsii$Proxy
@Generated(value="jsii-pacmak/1.96.0 (build 921e240)", date="2024-03-28T21:16:43.061Z") @Stability(Experimental) public interface Matrix extends software.amazon.jsii.JsiiSerializable
(experimental) The matrix stanza allows you to run a parameterized job multiple times with different arguments.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classMatrix.BuilderA builder forMatrixstatic classMatrix.Jsii$ProxyAn implementation forMatrix
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static Matrix.Builderbuilder()default StringgetAlias()(experimental) An alias for the matrix, usable from another job’s requires stanza.default Map<String,Object>getParameters()(experimental) A map of parameter names to every value the job should be called with.
-
-
-
Method Detail
-
getAlias
@Stability(Experimental) @Nullable default String getAlias()
(experimental) An alias for the matrix, usable from another job’s requires stanza.Defaults to the name of the job being executed
-
getParameters
@Stability(Experimental) @Nullable default Map<String,Object> getParameters()
(experimental) A map of parameter names to every value the job should be called with.
-
builder
@Stability(Experimental) static Matrix.Builder builder()
- Returns:
- a
Matrix.BuilderofMatrix
-
-