Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(sagemaker): added support for ml.g6 instances #30947

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.g5.12xlarge
*/
public static readonly G6_12XLARGE = InstanceType.of('ml.g6.12xlarge');

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

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

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

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

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

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

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

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