How can I retrieve the 'platformDetails' property via the EC2 API?

0

I'm using the EC2 API's DescribeInstances method, which returns 'platform' but not 'platformDetails': https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html

I can see both 'platform' and 'platformDetails' properties for my EC2 VMs when viewing them in the admin console, and they are described in the Instance type: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_Instance.html

How can I retrieve the 'platformDetails' via the web API?

Thanks

demandé il y a 2 ans224 vues
1 réponse
1

I have used AWS CLI ec2 describe-instances, and successfully retreived the value of platformDetails. You may use describe-instances for platformDetails fields.

Here is what I executed.

$ aws --debug ec2 describe-instances --query 'Reservations[].Instances[].{id:InstanceId,platformDetails:PlatformDetails}'

You can get the debug output from the response body to describeInstance API.

I can find the platformDetails field in the response body XML.

AWS
répondu il y a 2 ans
profile pictureAWS
EXPERT
Chris_G
vérifié il y a 2 ans

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions