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();
 
  • Method Details

    • getEnd

      @Stability(Experimental) @NotNull Number getEnd()
      (experimental) Ending value of iteration.

      Does not accept chaining expressions.

    • getStart

      @Stability(Experimental) @NotNull Number getStart()
      (experimental) Starting value of iteration.

      Does not accept chaining expressions.

    • getUpdateBy

      @Stability(Experimental) @NotNull Number 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

      @Stability(Experimental) static ComponentDocumentForLoop.Builder builder()
      Returns:
      a ComponentDocumentForLoop.Builder of ComponentDocumentForLoop