Skip to content

Commit

Permalink
chore(step-function-tasks): support additional volume types for emr (#…
Browse files Browse the repository at this point in the history
…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*
  • Loading branch information
pahud committed Jan 30, 2024
1 parent ac8251f commit 41bb188
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand All @@ -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
*/
Expand Down

0 comments on commit 41bb188

Please sign in to comment.