AWS CloudFormation takes care of provisioning and configuring those AWS resources for you. It automates the Infrastructure setup on AWS for you. You just need to create a CloudFormation template elisting the resources and their configuration. The template can be written in JSON or YAML Cloud Formation Templates are reusable which a big advantage. Cloud Formation … Continue reading Automating Infrastructure with CloudFormation: Creating a Basic Template for S3 bucket and EC2
Tag: json
Parsing JSON Output using JAVA
Use the JSONParser methods to parse a response that's returned from a call to an external service that is in JSON format, such as a JSON-encoded response of a Web service callout. Here is the code to parse the JSON string using JAVA: 1 2 3 4 5 6 7 8 9 10 11 12 … Continue reading Parsing JSON Output using JAVA