From 410947fbfe180537cb28074c96864e4048269acb Mon Sep 17 00:00:00 2001 From: Pahud Hsieh Date: Mon, 29 Jan 2024 15:27:43 +0000 Subject: [PATCH] support additional volumn types --- .../lib/emr/emr-create-cluster.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-create-cluster.ts b/packages/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-create-cluster.ts index 0f1feb0a096fb..465fe33aba534 100644 --- a/packages/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-create-cluster.ts +++ b/packages/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-create-cluster.ts @@ -483,9 +483,14 @@ export namespace EmrCreateCluster { /** * EBS Volume Types + * @see https://docs.aws.amazon.com/emr/latest/APIReference/API_VolumeSpecification.html#EMR-Type-VolumeSpecification-VolumeType * */ export enum EbsBlockDeviceVolumeType { + /** + * gp3 Volume Type + */ + GP3 = 'gp3', /** * gp2 Volume Type */ @@ -494,6 +499,14 @@ export namespace EmrCreateCluster { * io1 Volume Type */ IO1 = 'io1', + /** + * st1 Volume Type + */ + ST1 = 'st1', + /** + * sc1 Volume Type + */ + SC1 = 'sc1', /** * Standard Volume Type */