<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: PRAKATHI VM</title>
    <description>The latest articles on DEV Community by PRAKATHI VM (@prakathi_vm_).</description>
    <link>https://dev.to/prakathi_vm_</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4125463%2Fb890fda6-fe24-4249-affa-6fe0e0c4a241.png</url>
      <title>DEV Community: PRAKATHI VM</title>
      <link>https://dev.to/prakathi_vm_</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/prakathi_vm_"/>
    <language>en</language>
    <item>
      <title>cloud workshop day 1 - session 1</title>
      <dc:creator>PRAKATHI VM</dc:creator>
      <pubDate>Tue, 15 Sep 2026 06:52:21 +0000</pubDate>
      <link>https://dev.to/prakathi_vm_/day-1-session-1-235p</link>
      <guid>https://dev.to/prakathi_vm_/day-1-session-1-235p</guid>
      <description>&lt;p&gt;☁️ My AWS Cloud Workshop Journey: From Cloud Basics to Deploying My Portfolio&lt;/p&gt;

&lt;p&gt;Cloud computing has become an important part of modern software development, and as an AI/ML student, I wanted to gain practical exposure to how cloud technologies are used in real-world applications.&lt;/p&gt;

&lt;p&gt;Recently, I attended an &lt;strong&gt;AWS Cloud Workshop&lt;/strong&gt; that gave me both theoretical knowledge and hands-on experience with AWS services.&lt;/p&gt;

&lt;p&gt;☁️ Understanding Cloud Computing&lt;/p&gt;

&lt;p&gt;The workshop began with the fundamentals of &lt;strong&gt;cloud computing&lt;/strong&gt; and how organizations can use cloud infrastructure instead of maintaining physical servers.&lt;/p&gt;

&lt;p&gt;I learned about different cloud service models:&lt;/p&gt;

&lt;p&gt;IaaS – Infrastructure as a Service&lt;br&gt;
PaaS – Platform as a Service&lt;br&gt;
CaaS – Containers as a Service&lt;br&gt;
FaaS – Function as a Service&lt;br&gt;
SaaS – Software as a Service&lt;br&gt;
AIaaS – AI as a Service&lt;/p&gt;

&lt;p&gt;Understanding these models helped me see how cloud platforms provide different levels of infrastructure and services depending on application requirements.&lt;/p&gt;

&lt;p&gt;🤖 AI as a Service&lt;/p&gt;

&lt;p&gt;As an AI/ML student, AIaaS was particularly interesting to me.&lt;/p&gt;

&lt;p&gt;AIaaS allows developers and organizations to use AI capabilities through cloud services without having to build and maintain the entire AI infrastructure themselves.&lt;/p&gt;

&lt;p&gt;This can be useful for applications involving &lt;strong&gt;machine learning, generative AI, computer vision, natural language processing, and other AI workloads&lt;/strong&gt;.&lt;/p&gt;
&lt;h2&gt;
  
  
  🔐 Learning About AWS IAM
&lt;/h2&gt;

&lt;p&gt;Another important concept I learned was &lt;strong&gt;AWS IAM (Identity and Access Management)&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;IAM helps control:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Who can access AWS resources&lt;/li&gt;
&lt;li&gt;What resources they can access&lt;/li&gt;
&lt;li&gt;What actions they are allowed to perform&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I also understood the importance of following security practices such as protecting root-user credentials and giving users only the permissions they actually need.&lt;/p&gt;

&lt;p&gt;Exploring Amazon S3&lt;/p&gt;

&lt;p&gt;One of the major AWS services I explored was &lt;strong&gt;Amazon S3 (Simple Storage Service)&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;S3 is an object storage service that can be used to store:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Images&lt;/li&gt;
&lt;li&gt;Videos&lt;/li&gt;
&lt;li&gt;Documents&lt;/li&gt;
&lt;li&gt;Datasets&lt;/li&gt;
&lt;li&gt;Backups&lt;/li&gt;
&lt;li&gt;Website files&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I learned about &lt;strong&gt;S3 buckets, objects, Block Public Access, versioning, tags, and presigned URLs&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;🔄 S3 Versioning&lt;/p&gt;

&lt;p&gt;S3 Versioning allows multiple versions of an object to be maintained. This can be useful when files are accidentally overwritten or deleted.&lt;/p&gt;

&lt;p&gt;🔗 Presigned URLs&lt;/p&gt;

&lt;p&gt;I also learned about &lt;strong&gt;presigned URLs&lt;/strong&gt;, which can provide temporary access to private S3 objects without making the entire bucket publicly accessible.&lt;/p&gt;

&lt;p&gt;🚀 My Hands-on Project – Portfolio Deployment&lt;/p&gt;

&lt;p&gt;The most exciting part of the workshop was applying what I learned.&lt;/p&gt;

&lt;p&gt;I created my &lt;strong&gt;personal portfolio website&lt;/strong&gt; and deployed it using AWS.&lt;/p&gt;

&lt;p&gt;First, I used &lt;strong&gt;Amazon S3&lt;/strong&gt; to store and host my portfolio files. Then, I integrated &lt;strong&gt;Amazon CloudFront&lt;/strong&gt; to deliver the website through a CDN.&lt;/p&gt;

&lt;p&gt;🌐 Deployment Architecture&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Personal Portfolio
       ↓
   Amazon S3
       ↓
 Amazon CloudFront
       ↓
     Users
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This hands-on implementation helped me understand the complete process of taking a website from development to &lt;strong&gt;cloud deployment&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Instead of running the portfolio only on my local machine, I was able to make it accessible through AWS infrastructure.&lt;/p&gt;

&lt;p&gt;💡 Key Takeaways&lt;/p&gt;

&lt;p&gt;This workshop helped me gain both conceptual and practical knowledge of:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;☁️ Cloud Computing&lt;/li&gt;
&lt;li&gt;AWS fundamentals&lt;/li&gt;
&lt;li&gt;IaaS, PaaS, CaaS, FaaS &amp;amp; SaaS&lt;/li&gt;
&lt;li&gt;AI as a Service&lt;/li&gt;
&lt;li&gt;🔐 IAM and cloud security&lt;/li&gt;
&lt;li&gt;🪣 Amazon S3&lt;/li&gt;
&lt;li&gt;🔄 S3 Versioning&lt;/li&gt;
&lt;li&gt;🔗 Presigned URLs&lt;/li&gt;
&lt;li&gt;🌐 Amazon CloudFront&lt;/li&gt;
&lt;li&gt;🚀 Website deployment on AWS&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🎯 Final Thoughts&lt;/p&gt;

&lt;p&gt;The workshop was a valuable learning experience because it wasn't limited to just understanding AWS concepts. I was able to &lt;strong&gt;build something and deploy it using AWS services&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Deploying my own portfolio with &lt;strong&gt;Amazon S3 and CloudFront&lt;/strong&gt; gave me a better understanding of how cloud technologies can be used in real-world web applications.&lt;/p&gt;

&lt;p&gt;This experience has motivated me to explore more AWS services and eventually integrate &lt;strong&gt;cloud computing with my AI/ML projects&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;This is just the beginning of my AWS journey. ☁️🚀&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fa7k222hv7t218aqd6g0p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fa7k222hv7t218aqd6g0p.png" alt=" " width="800" height="417"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fle8kdgsu3ukywsgmmb04.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fle8kdgsu3ukywsgmmb04.png" alt=" " width="799" height="544"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F0sb7729msaxwtxvzvpec.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F0sb7729msaxwtxvzvpec.png" alt=" " width="800" height="397"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cloud</category>
      <category>aws</category>
    </item>
  </channel>
</rss>
