Search

AWS

Last Updated: Nov 17, 2020

Articles

Amazon Web Services is a subsidiary of Amazon that provides on-demand cloud computing platforms and APIs to individuals, companies, and governments, on a metered pay-as-you-go basis.

Prerequisites for AWS Node

  1. Create an AWS account.
  2. Generate an AWS Access Key and Secret Access Key by navigating through the following path: IAM > Users > Access Keys > Create access key.
  3. In your machine, install the required packages to execute the AWS Functions. To install the packages:
    1. Open the command prompt.
    2. Change the directory to C:\jiffyservice\precompile\connector\requirements.
    3. Execute the following command.

      pip install -r aws.txt –user

Design the Action steps for AWS Node

In the Actions tab, you can define actions to be performed in AWS Processing Node.

Double-click the AWS node and navigate to the Actions tab. Select one of the following options from the first drop-down:

  • AWS Functions: To select the required AWS Functions from the list in the second drop-down.
  • Custom AWS Function: The Custom AWS functions are created for specific needs if not met by the Predefined AWS functions. All the User Defined Functions created in the HyperApp with Type selected as AWS gets listed in the drop-down.
  • Call Function: To select other generic Functions from the list in the second drop-down.
    To know more about how to use Functions, click here.
  • Set Variable: To set the value for a Variable as needed in further steps. The value set can either be a constant or another variable. If this variable is toggled as an output variable in the Variables tab, it can be mapped to succeeding nodes of the task.

Image description

Variables

All Input/Local variables of the AWS node are displayed under the Variables tab.

Table Definition

All Default/Custom DataTables in the task are displayed under the Table Definitions tab.

Properties of the AWS Node

  1. Navigate to Properties and enter Name and Description.
  2. Enable Mark run Failure on Node Fail and Continue on Failure? options as required.
  3. Select the Cluster to run on the task from the Clusters drop-down.

Image description

Result of Execution in AWS Node

After executing the task, the Result of Execution window displays the following tabs:

  • Inputs: The inputs mapped to the AWS node are displayed.
  • Output: The results of the actions performed are displayed in XML format.
  • Run Info: The Run Details and Machine Details are displayed.
    • Run Details include Run ID, Sequence Number, and Total Node Execution Time (in seconds) are displayed.
    • Machine Details include ID, Name, Host, Port, Iteration Start Time, Iteration End Time, Iteration Time (in seconds) are displayed.
  • Step Data: The details of the steps designed inside the node, the status of each step, and the values stored in the variables are displayed.
  • Formatted Output: The output is displayed in the table format.

When the Create Instance(XYZ, ABC, ami-000000, JiffyInstance, us-east-2, Instance, t2.nano, Key) function is executed, a new instance with name JiffyInstance is created in the AWS. Image description

Did you find what you were looking for?