UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

2 lines (1 loc) 3.19 kB
"use strict";var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.Map=exports.isPositiveInteger=void 0;const jsiiDeprecationWarnings=require("../../../.warnings.jsii.js"),JSII_RTTI_SYMBOL_1=Symbol.for("jsii.rtti"),core_1=require("../../../core"),state_type_1=require("./private/state-type"),state_1=require("./state"),chain_1=require("../chain"),fields_1=require("../fields"),state_graph_1=require("../state-graph");exports.isPositiveInteger=value=>{const isFloat=Math.floor(value)!==value,isNotPositiveInteger=value<0||value>Number.MAX_SAFE_INTEGER;return!isFloat&&!isNotPositiveInteger};class Map extends state_1.State{constructor(scope,id,props={}){super(scope,id,props);try{jsiiDeprecationWarnings.aws_cdk_lib_aws_stepfunctions_MapProps(props)}catch(error){throw process.env.JSII_DEBUG!=="1"&&error.name==="DeprecationError"&&Error.captureStackTrace(error,Map),error}this.endStates=[this],this.maxConcurrency=props.maxConcurrency,this.itemsPath=props.itemsPath}addRetry(props={}){try{jsiiDeprecationWarnings.aws_cdk_lib_aws_stepfunctions_RetryProps(props)}catch(error){throw process.env.JSII_DEBUG!=="1"&&error.name==="DeprecationError"&&Error.captureStackTrace(error,this.addRetry),error}return super._addRetry(props),this}addCatch(handler,props={}){try{jsiiDeprecationWarnings.aws_cdk_lib_aws_stepfunctions_IChainable(handler),jsiiDeprecationWarnings.aws_cdk_lib_aws_stepfunctions_CatchProps(props)}catch(error){throw process.env.JSII_DEBUG!=="1"&&error.name==="DeprecationError"&&Error.captureStackTrace(error,this.addCatch),error}return super._addCatch(handler.startState,props),this}next(next){try{jsiiDeprecationWarnings.aws_cdk_lib_aws_stepfunctions_IChainable(next)}catch(error){throw process.env.JSII_DEBUG!=="1"&&error.name==="DeprecationError"&&Error.captureStackTrace(error,this.next),error}return super.makeNext(next.startState),chain_1.Chain.sequence(this,next)}iterator(iterator){try{jsiiDeprecationWarnings.aws_cdk_lib_aws_stepfunctions_IChainable(iterator)}catch(error){throw process.env.JSII_DEBUG!=="1"&&error.name==="DeprecationError"&&Error.captureStackTrace(error,this.iterator),error}const name=`Map ${this.stateId} Iterator`;return super.addIterator(new state_graph_1.StateGraph(iterator.startState,name)),this}toStateJson(){return{Type:state_type_1.StateType.MAP,Comment:this.comment,ResultPath:state_1.renderJsonPath(this.resultPath),...this.renderNextEnd(),...this.renderInputOutput(),...this.renderParameters(),...this.renderResultSelector(),...this.renderRetryCatch(),...this.renderIterator(),...this.renderItemsPath(),MaxConcurrency:this.maxConcurrency}}validateState(){const errors=[];return this.iteration===void 0&&errors.push("Map state must have a non-empty iterator"),this.maxConcurrency!==void 0&&!core_1.Token.isUnresolved(this.maxConcurrency)&&!exports.isPositiveInteger(this.maxConcurrency)&&errors.push("maxConcurrency has to be a positive integer"),errors}renderItemsPath(){return{ItemsPath:state_1.renderJsonPath(this.itemsPath)}}renderParameters(){return fields_1.FieldUtils.renderObject({Parameters:this.parameters})}}exports.Map=Map,_a=JSII_RTTI_SYMBOL_1,Map[_a]={fqn:"aws-cdk-lib.aws_stepfunctions.Map",version:"2.70.0"};