Skip to content

Commit 41bb188

Browse files
authored
chore(step-function-tasks): support additional volume types for emr (#28911)
Support additional volume types for `EbsBlockDeviceVolumeType`. Closes #28874 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent ac8251f commit 41bb188

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

packages/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-create-cluster.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -483,9 +483,14 @@ export namespace EmrCreateCluster {
483483

484484
/**
485485
* EBS Volume Types
486+
* @see https://docs.aws.amazon.com/emr/latest/APIReference/API_VolumeSpecification.html#EMR-Type-VolumeSpecification-VolumeType
486487
*
487488
*/
488489
export enum EbsBlockDeviceVolumeType {
490+
/**
491+
* gp3 Volume Type
492+
*/
493+
GP3 = 'gp3',
489494
/**
490495
* gp2 Volume Type
491496
*/
@@ -494,6 +499,14 @@ export namespace EmrCreateCluster {
494499
* io1 Volume Type
495500
*/
496501
IO1 = 'io1',
502+
/**
503+
* st1 Volume Type
504+
*/
505+
ST1 = 'st1',
506+
/**
507+
* sc1 Volume Type
508+
*/
509+
SC1 = 'sc1',
497510
/**
498511
* Standard Volume Type
499512
*/

0 commit comments

Comments
 (0)