aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
2 lines (1 loc) • 2.1 kB
JavaScript
;var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.EmrTerminateCluster=void 0;const jsiiDeprecationWarnings=require("../../../.warnings.jsii.js"),JSII_RTTI_SYMBOL_1=Symbol.for("jsii.rtti"),iam=require("../../../aws-iam"),sfn=require("../../../aws-stepfunctions"),core_1=require("../../../core"),task_utils_1=require("../private/task-utils");class EmrTerminateCluster extends sfn.TaskStateBase{constructor(scope,id,props){super(scope,id,props),this.props=props;try{jsiiDeprecationWarnings.aws_cdk_lib_aws_stepfunctions_tasks_EmrTerminateClusterProps(props)}catch(error){throw process.env.JSII_DEBUG!=="1"&&error.name==="DeprecationError"&&Error.captureStackTrace(error,EmrTerminateCluster),error}this.integrationPattern=props.integrationPattern??sfn.IntegrationPattern.RUN_JOB,task_utils_1.validatePatternSupported(this.integrationPattern,EmrTerminateCluster.SUPPORTED_INTEGRATION_PATTERNS),this.taskPolicies=this.createPolicyStatements()}_renderTask(){return{Resource:task_utils_1.integrationResourceArn("elasticmapreduce","terminateCluster",this.integrationPattern),Parameters:sfn.FieldUtils.renderObject({ClusterId:this.props.clusterId})}}createPolicyStatements(){const stack=core_1.Stack.of(this),policyStatements=[new iam.PolicyStatement({actions:["elasticmapreduce:DescribeCluster","elasticmapreduce:TerminateJobFlows"],resources:[core_1.Stack.of(this).formatArn({service:"elasticmapreduce",resource:"cluster",resourceName:"*"})]})];return this.integrationPattern===sfn.IntegrationPattern.RUN_JOB&&policyStatements.push(new iam.PolicyStatement({actions:["events:PutTargets","events:PutRule","events:DescribeRule"],resources:[stack.formatArn({service:"events",resource:"rule",resourceName:"StepFunctionsGetEventForEMRTerminateJobFlowsRule"})]})),policyStatements}}exports.EmrTerminateCluster=EmrTerminateCluster,_a=JSII_RTTI_SYMBOL_1,EmrTerminateCluster[_a]={fqn:"aws-cdk-lib.aws_stepfunctions_tasks.EmrTerminateCluster",version:"2.70.0"},EmrTerminateCluster.SUPPORTED_INTEGRATION_PATTERNS=[sfn.IntegrationPattern.REQUEST_RESPONSE,sfn.IntegrationPattern.RUN_JOB];