"describe-instance-type-offerings" for sagemaker instances?

0

I found that ec2 instance type has available AZ and to find which AZ as available is to check describe-instance-type-offerings command.

Just like same I want to deploy my AI/ML model to custom VPC with following code.

subnets = ['subnet-1', 'subnet-2']
security_group_ids = ['sg-1']
other_vpc_config = {'Subnets': subnets,
                    'SecurityGroupIds': security_group_ids}

predict = mnist_estimator.deploy(initial_instance_count=1,
                                instance_type='ml.m5.12xlarge',
                                vpc_config_override=other_vpc_config)

But I can't find out which AZ can use instance type that I want(for here ml.m5.12xlarge). Is there any command that I can find something like "describe-instance-type-offerings" for sagemaker?

sukim
質問済み 1年前269ビュー
1回答
0

In Amazon SageMaker, there is no direct command similar to "describe-instance-type-offerings" to retrieve information about available Availability Zones (AZs) for a specific instance type. However, you can use the "get_image" API to obtain information about the Docker image used by the SageMaker built-in algorithms, including the supported instance types and regions.

https://docs.aws.amazon.com/it_it/sagemaker/latest/dg/regions-quotas.html

profile pictureAWS
回答済み 1年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ