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

feita há 2 anos225 visualizações
1 Resposta
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
respondido há 2 anos
profile pictureAWS
ESPECIALISTA
Chris_G
avaliado há 2 anos

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas