Back to Amazon EC2 Integrations
Handler · Version 1

AWS EC2 Image List Amazon EC2

Download GitHub

About

This handler will be used primarily in a loop to iterate over multiple EC2 image instances. In order to be used by the Loop handler, a single value is returned as an escaped XML string. called "Instance List".

The Instance List will have the following format: ari-fe916297 ari-8b779ae2 ari-926b8bfb

To setup the Loop handler, refer to the Image List from this handler for 'Data Source' and use '/images/image'as the 'Variable Path'.

The describe_images function is the base AWS::EC2 gem call we are using for this handler and returns a multi-level hash/array nest with a top level hash key of "imagesSet".

The imagesSet has the following pseudo-xml form. Elements with the tag are array members and are referenced by numerical index.

All others are hash members and are references by element/key name.

To retrieve the imageId, for example, simply flatten the above structure by removing inapplicable items

Treat items as arrays and all other members as hash keys. Doing so, we can reference imageId value in the following manner:

@baseawsobject.imagesSet.item[index].imageId

Parameters
Name Description Sample
Image Launch Permissions Indicate whether you want public images, private images or both returned
Image Architecture Indicate whether you want public images, private images or both returned
Image Type Indicate whether you want public images, private images or both returned
Image State Indicate whether you want public images, private images or both returned
Results
Name Description
Images List
Image List
Changelog

AWS EC2 Image List V1.1 (2017-08-24)

  • Update the EC2 gem to AWS SDK 2.2.34.
  • Change Info Values to be more consistent with the other AWS handlers.
  • Internal tweaks to make execution similar to other AWS handlers.

AWS EC2 Image List V1 (2012-05-02)

  • Initial version. See README for details.
Download GitHub

On This Page

Looking for a workflow engine? Learn more about the Kinetic Data Enterprise Workflow Platform. Check it out
Return to Top