"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
asked a year ago256 views
1 Answer
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
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions