interface ComponentDocumentForLoop
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.Alpha.ComponentDocumentForLoop |
Go | github.com/aws/aws-cdk-go/awsimagebuilderalpha/v2#ComponentDocumentForLoop |
Java | software.amazon.awscdk.services.imagebuilder.alpha.ComponentDocumentForLoop |
Python | aws_cdk.aws_imagebuilder_alpha.ComponentDocumentForLoop |
TypeScript (source) | @aws-cdk/aws-imagebuilder-alpha ยป ComponentDocumentForLoop |
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 * as imagebuilder_alpha from '@aws-cdk/aws-imagebuilder-alpha';
const componentDocumentForLoop: imagebuilder_alpha.ComponentDocumentForLoop = {
end: 123,
start: 123,
updateBy: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| end | number | Ending value of iteration. |
| start | number | Starting value of iteration. |
| update | number | Difference by which an iterating value is updated through addition. |
end
Type:
number
Ending value of iteration.
Does not accept chaining expressions.
start
Type:
number
Starting value of iteration.
Does not accept chaining expressions.
updateBy
Type:
number
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.

.NET
Go
Java
Python
TypeScript (