In AWS , How can I attached volumes list for particular VM using REST APIsHow can I get the size of an Amazon S3 bucket?What is causing Access Denied when using the aws cli to download from Amazon S3?How can I be certain EBS volume is mounted at a particular point?Is there a command to list AWS instances that results in short output?How to list ec2 instance using aws cliHow to automatically update EC2 Linux instances without downtime by switching between two instances?List all volumes attached to list of instances using aws cliExport all AWS VPC data to a file?AWS: How do I find the list of instances associated with a particular subnet?Aws cli: The filter condition returns all the running instance instead of those with a particular tag

Why there is a red color in right side?

Do details of my undergraduate title matter?

Why one uses 了 and the other one doesn’t?

What is the highest power supply a Raspberry pi 3 B can handle without getting damaged?

What mathematical theory is required for high frequency trading?

In Street Fighter, what does the M stand for in M Bison?

Are there examples of rowers who also fought?

If the mass of the Earth is decreasing by sending debris in space, does its angular momentum also decrease?

Counterfeit checks were created for my account. How does this type of fraud work?

Can a character learn spells from someone else's spellbook and then sell it?

How can I improve my violin intonation for enharmonic notes?

Kelvin type connection

Is Newton's third law really correct?

I just entered the USA without passport control at Atlanta airport

What kind of chart is this?

Boundaries and Buddhism

Why does a Force divides equally on a Multiple Support/Legs?

The Amazing Sliding Crossword

How to make all magic-casting innate, but still rare?

How to modify a string without altering its text properties

How are で and いう being used in this context?

How to ask if I can mow my neighbor's lawn

Does there exist a non-trivial group that is both perfect and complete?

What does this Swiss black on yellow rectangular traffic sign with a symbol looking like a dart mean?



In AWS , How can I attached volumes list for particular VM using REST APIs


How can I get the size of an Amazon S3 bucket?What is causing Access Denied when using the aws cli to download from Amazon S3?How can I be certain EBS volume is mounted at a particular point?Is there a command to list AWS instances that results in short output?How to list ec2 instance using aws cliHow to automatically update EC2 Linux instances without downtime by switching between two instances?List all volumes attached to list of instances using aws cliExport all AWS VPC data to a file?AWS: How do I find the list of instances associated with a particular subnet?Aws cli: The filter condition returns all the running instance instead of those with a particular tag






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








3















How can I get the attached Volumes list for a particular instanceVM using the REST API?



IE: What is the REST API equivalent for this AWS CLI command:



aws ec2 describe-volumes --region us-west --filters Name=attachment.instance-id,values=i-eeh33heue3









share|improve this question






























    3















    How can I get the attached Volumes list for a particular instanceVM using the REST API?



    IE: What is the REST API equivalent for this AWS CLI command:



    aws ec2 describe-volumes --region us-west --filters Name=attachment.instance-id,values=i-eeh33heue3









    share|improve this question


























      3












      3








      3








      How can I get the attached Volumes list for a particular instanceVM using the REST API?



      IE: What is the REST API equivalent for this AWS CLI command:



      aws ec2 describe-volumes --region us-west --filters Name=attachment.instance-id,values=i-eeh33heue3









      share|improve this question
















      How can I get the attached Volumes list for a particular instanceVM using the REST API?



      IE: What is the REST API equivalent for this AWS CLI command:



      aws ec2 describe-volumes --region us-west --filters Name=attachment.instance-id,values=i-eeh33heue3






      amazon-web-services amazon-ec2 aws-cli






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jun 2 at 11:43









      asktyagi

      521110




      521110










      asked Jun 2 at 3:16









      alok tannaalok tanna

      162




      162




















          1 Answer
          1






          active

          oldest

          votes


















          5














          The API command is typically the CLI command without punctuation. It's documented here.



          Sample request (you can add parameters for instance ID)



          https://ec2.amazonaws.com/?Action=DescribeVolumes&AUTHPARAMS





          share|improve this answer

























          • Thank you. so below request is working request_parameters = 'Action=DescribeVolumes&Version=2013-10-15' but when I try this with filter it is not working . request_parameters = 'Action=DescribeVolumes&Version=2013-10-15&Filter.1.Name=attachment.instance-id&Filter.1.value=i-019c4383c4e0d670e'

            – alok tanna
            Jun 4 at 17:47












          • I don't know the answer to that sorry. Your question has been answered, if you have another question around filtering please ask a new question, someone else will be able to help.

            – Tim
            Jun 4 at 18:44











          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "2"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f969815%2fin-aws-how-can-i-attached-volumes-list-for-particular-vm-using-rest-apis%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          5














          The API command is typically the CLI command without punctuation. It's documented here.



          Sample request (you can add parameters for instance ID)



          https://ec2.amazonaws.com/?Action=DescribeVolumes&AUTHPARAMS





          share|improve this answer

























          • Thank you. so below request is working request_parameters = 'Action=DescribeVolumes&Version=2013-10-15' but when I try this with filter it is not working . request_parameters = 'Action=DescribeVolumes&Version=2013-10-15&Filter.1.Name=attachment.instance-id&Filter.1.value=i-019c4383c4e0d670e'

            – alok tanna
            Jun 4 at 17:47












          • I don't know the answer to that sorry. Your question has been answered, if you have another question around filtering please ask a new question, someone else will be able to help.

            – Tim
            Jun 4 at 18:44















          5














          The API command is typically the CLI command without punctuation. It's documented here.



          Sample request (you can add parameters for instance ID)



          https://ec2.amazonaws.com/?Action=DescribeVolumes&AUTHPARAMS





          share|improve this answer

























          • Thank you. so below request is working request_parameters = 'Action=DescribeVolumes&Version=2013-10-15' but when I try this with filter it is not working . request_parameters = 'Action=DescribeVolumes&Version=2013-10-15&Filter.1.Name=attachment.instance-id&Filter.1.value=i-019c4383c4e0d670e'

            – alok tanna
            Jun 4 at 17:47












          • I don't know the answer to that sorry. Your question has been answered, if you have another question around filtering please ask a new question, someone else will be able to help.

            – Tim
            Jun 4 at 18:44













          5












          5








          5







          The API command is typically the CLI command without punctuation. It's documented here.



          Sample request (you can add parameters for instance ID)



          https://ec2.amazonaws.com/?Action=DescribeVolumes&AUTHPARAMS





          share|improve this answer















          The API command is typically the CLI command without punctuation. It's documented here.



          Sample request (you can add parameters for instance ID)



          https://ec2.amazonaws.com/?Action=DescribeVolumes&AUTHPARAMS






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jun 2 at 7:55

























          answered Jun 2 at 4:42









          TimTim

          18.8k41951




          18.8k41951












          • Thank you. so below request is working request_parameters = 'Action=DescribeVolumes&Version=2013-10-15' but when I try this with filter it is not working . request_parameters = 'Action=DescribeVolumes&Version=2013-10-15&Filter.1.Name=attachment.instance-id&Filter.1.value=i-019c4383c4e0d670e'

            – alok tanna
            Jun 4 at 17:47












          • I don't know the answer to that sorry. Your question has been answered, if you have another question around filtering please ask a new question, someone else will be able to help.

            – Tim
            Jun 4 at 18:44

















          • Thank you. so below request is working request_parameters = 'Action=DescribeVolumes&Version=2013-10-15' but when I try this with filter it is not working . request_parameters = 'Action=DescribeVolumes&Version=2013-10-15&Filter.1.Name=attachment.instance-id&Filter.1.value=i-019c4383c4e0d670e'

            – alok tanna
            Jun 4 at 17:47












          • I don't know the answer to that sorry. Your question has been answered, if you have another question around filtering please ask a new question, someone else will be able to help.

            – Tim
            Jun 4 at 18:44
















          Thank you. so below request is working request_parameters = 'Action=DescribeVolumes&Version=2013-10-15' but when I try this with filter it is not working . request_parameters = 'Action=DescribeVolumes&Version=2013-10-15&Filter.1.Name=attachment.instance-id&Filter.1.value=i-019c4383c4e0d670e'

          – alok tanna
          Jun 4 at 17:47






          Thank you. so below request is working request_parameters = 'Action=DescribeVolumes&Version=2013-10-15' but when I try this with filter it is not working . request_parameters = 'Action=DescribeVolumes&Version=2013-10-15&Filter.1.Name=attachment.instance-id&Filter.1.value=i-019c4383c4e0d670e'

          – alok tanna
          Jun 4 at 17:47














          I don't know the answer to that sorry. Your question has been answered, if you have another question around filtering please ask a new question, someone else will be able to help.

          – Tim
          Jun 4 at 18:44





          I don't know the answer to that sorry. Your question has been answered, if you have another question around filtering please ask a new question, someone else will be able to help.

          – Tim
          Jun 4 at 18:44

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Server Fault!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f969815%2fin-aws-how-can-i-attached-volumes-list-for-particular-vm-using-rest-apis%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

          What if the end-user didn't have the required library?What is setup.py?What is a clean, pythonic way to have multiple constructors in Python?What does Ruby have that Python doesn't, and vice versa?What is the reason for having '//' in Python?How do I create a namespace package in Python?How to package shared objects that python modules depend on?setuptools vs. distutils: why is distutils still a thing?Navigation in Windows 10 vs code not going to virtualenv library when the same library is installed at user levelPython create package for local usePackaging a project that uses multiple python versionsWhy is permission denied on pip install except for when “--user” is included at end of command?

          Esgonzo ibérico Índice Descrición Distribución Hábitat Ameazas Notas Véxase tamén "Acerca dos nomes dos anfibios e réptiles galegos""Chalcides bedriagai"Chalcides bedriagai en Carrascal, L. M. Salvador, A. (Eds). Enciclopedia virtual de los vertebrados españoles. Museo Nacional de Ciencias Naturales, Madrid. España.Fotos