ComponentDocumentForLoop

class aws_cdk.aws_imagebuilder_alpha.ComponentDocumentForLoop(*, end, start, update_by)

Bases: object

(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.

Parameters:
  • end (Union[int, float]) – (experimental) Ending value of iteration. Does not accept chaining expressions.

  • start (Union[int, float]) – (experimental) Starting value of iteration. Does not accept chaining expressions.

  • update_by (Union[int, float]) – (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.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_imagebuilder_alpha as imagebuilder_alpha

component_document_for_loop = imagebuilder_alpha.ComponentDocumentForLoop(
    end=123,
    start=123,
    update_by=123
)

Attributes

end

(experimental) Ending value of iteration.

Does not accept chaining expressions.

Stability:

experimental

start

(experimental) Starting value of iteration.

Does not accept chaining expressions.

Stability:

experimental

update_by

(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.

Stability:

experimental