Interface ComponentDocumentForLoop
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ComponentDocumentForLoop.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:34.441Z")
@Stability(Experimental)
public interface ComponentDocumentForLoop
extends software.amazon.jsii.JsiiSerializable
(experimental) The for loop iterates on a range of integers specified within a boundary outlined by the start and end of the variables.
The iterating values are in the set [start, end] and includes boundary values.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.imagebuilder.alpha.*;
ComponentDocumentForLoop componentDocumentForLoop = ComponentDocumentForLoop.builder()
.end(123)
.start(123)
.updateBy(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forComponentDocumentForLoopstatic final classAn implementation forComponentDocumentForLoop -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnd
(experimental) Ending value of iteration.Does not accept chaining expressions.
-
getStart
(experimental) Starting value of iteration.Does not accept chaining expressions.
-
getUpdateBy
(experimental) Difference by which an iterating value is updated through addition.It must be a negative or positive non-zero value. Does not accept chaining expressions.
-
builder
- Returns:
- a
ComponentDocumentForLoop.BuilderofComponentDocumentForLoop
-