Skip to content

Commit

Permalink
added support for ml.g6 instances
Browse files Browse the repository at this point in the history
  • Loading branch information
prli committed Jul 26, 2024
1 parent 5f3337f commit b970a1a
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions packages/@aws-cdk/aws-sagemaker-alpha/lib/instance-type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,46 @@ export class InstanceType {
*/
public static readonly G5_XLARGE = InstanceType.of('ml.g5.xlarge');

/**
* ml.g6.12xlarge
*/
public static readonly G6_12XLARGE = InstanceType.of('ml.g6.12xlarge');

/**
* ml.g6.16xlarge
*/
public static readonly G6_16XLARGE = InstanceType.of('ml.g6.16xlarge');

/**
* ml.g6.24xlarge
*/
public static readonly G6_24XLARGE = InstanceType.of('ml.g6.24xlarge');

/**
* ml.g6.2xlarge
*/
public static readonly G6_2XLARGE = InstanceType.of('ml.g6.2xlarge');

/**
* ml.g6.48xlarge
*/
public static readonly G6_48XLARGE = InstanceType.of('ml.g6.48xlarge');

/**
* ml.g6.4xlarge
*/
public static readonly G6_4XLARGE = InstanceType.of('ml.g6.4xlarge');

/**
* ml.g6.8xlarge
*/
public static readonly G6_8XLARGE = InstanceType.of('ml.g6.8xlarge');

/**
* ml.g6.xlarge
*/
public static readonly G6_XLARGE = InstanceType.of('ml.g6.xlarge');

/**
* ml.inf1.24xlarge
*/
Expand Down

0 comments on commit b970a1a

Please sign in to comment.