amazon web services aws

Amazon Web Services ( aws )

Jul 11, 2014

1.25k likes | 2.85k Views

Amazon Web Services ( aws ). B. Ramamurthy. Introduction. Amazon.com, the online market place for goods, has leveraged the services that worked for their own business and has made them available as cloud services, amazon web services ( aws ) aws.amazon.com

Share Presentation

  • same security keys
  • bucket object
  • amazon simple storage service
  • monthly bill
  • amazon elastic compute cloud

hogan

Presentation Transcript

Amazon Web Services (aws) B. Ramamurthy

Introduction • Amazon.com, the online market place for goods, has leveraged the services that worked for their own business and has made them available as cloud services, amazon web services (aws) • aws.amazon.com • Get an account on aws.amazon.com/free the free tier for services • Next step is to study the documentation available on various services : https://aws.amazon.com/documentation/ • Follow the documentation with hands-on tutorials. CSE651, B. Ramamurthy

References • aws.amazon.com • http://docs.aws.amazon.com/gettingstarted/latest/awsgsg-intro/gsg-aws-intro.html • http://docs.aws.amazon.com/AmazonS3/latest/gsg/GetStartedWithS3.html CSE651, B. Ramamurthy

CSE651, B. Ramamurthy

Getting Started with AWS • Amazon Web Services (AWS) provides computing resources and services that you can use to build applications within minutes at pay-as-you-go pricing. • For example, you can rent a server on AWS that you can connect to, configure, secure, and run just as you would a physical server. • The difference is the virtual server runs on top of a planet-scale network managed by AWS. • Using AWS to build your Internet application is like purchasing electricity from a power company instead of running your own generator CSE651, B. Ramamurthy

Service layers CSE651, B. Ramamurthy

What can you do with aws? • You can run nearly anything on AWS that you would run on physical hardware: websites, applications, databases, mobile apps, email campaigns, distributed data analysis, media storage, and private networks. CSE651, B. Ramamurthy

Store file: lets try it out CSE651, B. Ramamurthy

Simple Storage Service (S3) • Amazon Simple Storage Service (Amazon S3) is storage for the internet. You can use Amazon S3 to store and retrieve any amount of data at any time, from anywhere on the web. • The bucket name you choose must be unique across all existing bucket names in Amazon S3. One way to help ensure uniqueness is to prefix your bucket names with the name of your organization. • Steps involved in using S3: • Sign up for s3 service • Create a bucket • Add an object to bucket • View an object • Move an object • Access an object from programs/consoles/web using: https://s3.amazonaws.com/Bucket/Object • Delete an object and a bucket CSE651, B. Ramamurthy

Privacy and sharing an object • All objects by default are private. Only the object owner has permission to access these objects. However, the object owner can optionally share objects with others by creating a pre-signed URL, using their own security credentials, to grant time-limited permission to download the objects. • When you create a pre-signed URL for your object, you must provide your security credentials, specify a bucket name, an object key, specify the HTTP method (GET to download the object) and expiration date and time. The pre-signed URLs are valid only for the specified duration. • Anyone who receives the pre-signed URL can then access the object. For example, if you have a video in your bucket and both the bucket and the object are private, you can share the video with others by generating a pre-signed URL. CSE651, B. Ramamurthy

S3 Demo • We will demo using S3Fox utility • We will also demo using Amazon console CSE651, B. Ramamurthy

Amazon Console CSE651, B. Ramamurthy

Hosting a Web Site • Static web site is a web site that does not require server site support: eg. html, js, css • A static website does not require server-side processing and relies only on client-side technologies such as HTML, CSS, and JavaScript. CSE651, B. Ramamurthy

AWS Services for web site hosting CSE651, B. Ramamurthy

Static website hosting architecture CSE651, B. Ramamurthy

Web-site with custom domain (costs money) CSE651, B. Ramamurthy

Web-site with performance mgt. (costs money) CSE651, B. Ramamurthy

Step1: Choose a domain name • When you host a website on Amazon S3, AWS assigns your website a URL based on the name of the storage location you create in Amazon S3 to hold the website files (called an S3 bucket) and the geographical region where you created the bucket. • For example, if you create a bucket called cse651blr on the east coast of the United States and use it to host your website, the default URL will be http://cse651blr.s3-website-us-east-1.amazonaws.com/. • We will not use Route 53 and CloudFront for this proof-of-concept implementation. CSE651, B. Ramamurthy

Next steps • Open the Amazon S3 console at https://console.aws.amazon.com/s3/. • Create 3 buckets in s3: cse651blr.com, www.cse651blr.com, logs.cse651blr.com • Upload the files of your static web page into cse651blr.com bucket • Set the permissions of cse651blr.com to allow others to view: In the policy edit window enter the code given below and save. CSE651, B. Ramamurthy

Permissions: policy code { "Version":"2008-10-17", "Statement":[{ "Sid":"Allow Public Access to All Objects", "Effect":"Allow", "Principal": { "AWS": "*" }, "Action":["s3:GetObject"], "Resource":["arn:aws:s3:::example.com/*" ] } ] } CSE651, B. Ramamurthy

Enable logging and redirection • In the logging window enter logs.cse651blr.com and /root in the next box • Right click on www.cse651blr.com and redirect it to cse651blr.com • Now upload all the files of static application into the bucket cse651blr.com • Click on the endpoint address that shows up in properties window of cse651blr.com • You should be able to see the static application. • Enjoy. CSE651, B. Ramamurthy

High-level architecture CSE651, B. Ramamurthy

Pricing: Estimated Monthly Bill for this site • If it is active with 30000 requests/client accesses is about $5.22/month • http://docs.aws.amazon.com/gettingstarted/latest/swh/static-website-hosting-pricing-s3.html CSE651, B. Ramamurthy

Run a virtual server on AWS: Linux server CSE651, B. Ramamurthy

Amazon Elastic Compute Cloud (EC2) • We completed an application using S3. • For this exercise we will use the EC2 that is preeminent product of aws • One can use EC2 to run and manage virtual servers on AWS. Your servers are launched as EC2 instances and initialized with a machine image called an AMI. • In the free usage tier, you can launch a t1.micro Amazon EC2 instance. Micro instances provide a small amount of consistent CPU resources and allow you to burst CPU capacity when additional cycles are available. • A t1.micro instance is well suited for low-throughput applications and websites that consume significant compute cycles only occasionally. • For this exercise we will launch a Linux server using a Amazon Machine Image that is eligible for the free tier. CSE651, B. Ramamurthy

Amazon Machine Images (AMI) CSE651, B. Ramamurthy

Connect to the server • After you launch the instance you need putty to ssh into your server. • Note the dns for the launched server at the bottom half of the console: ec2-54-198-95-68.compute-1.amazonaws.com • Convert the cse651b.pem into .ppk private key • Launch a putty window and use all these items above and username ec2-user to log into the launched server. • Work on some Linux commands to check this new launch out. (sudo yum install emacs) • Make sure you terminate the server when you are done using it. This can be done from the EC2 dashboard CSE651, B. Ramamurthy

Putty connect to Linux Server CSE651, B. Ramamurthy

Run a virtual server on AWS: Windows server CSE651, B. Ramamurthy

Steps to acquire a Windows Server on aws • Similar to Linux instance: • Choose a free tier Windows 64 bit instance • Use the same security keys-pair • Set the security group to allow RDP, SSH • Connect using RDP • You can see the local system if you enable appropriate privileges when connecting • Transfer software and install and use the server. • Lets go on to the demo. Make sure you stop, and terminate the instance after done. CSE651, B. Ramamurthy

Summary • We looked at the capabilities of Amazon Web Services through 4 different examples; • Working with S3 • Static web app • Launching an instance of Linux instance + working with it • Launching an instance of Windows instance + working with it • You can try all these if you can get an account on aws. CSE651, B. Ramamurthy

  • More by User

Amazon Web Services

Amazon Web Services

Amazon Web Services. Stephen Schmidt General Manager, Enterprise/Federal [email protected]. Amazon. Retail Business. Seller Business. Developers & IT Professionals. Tens of millions of active customer accounts Seven countries: US, UK, Germany, Japan, France, Canada, China.

863 views • 34 slides

Amazon Web Services

Amazon Web Services. Justin DeBrabant. Cloud Computing . A “pay what you use” service for hardware/software resources analogy: utilities Amazon Web Services (AWS) is a cloud computing provider there are many others . Benefits of Cloud Computing. elasticity scale out or scale up easily*

434 views • 21 slides

Amazon Web Services

Amazon Web Services. The Basics. About - Sean Hull. Scalability, Database Performance & Web Operations EC2, Rackspace & Cloud Migrations 20 Years Professional Technology Experience hullsean @ GMAIL.com www.iheavy.com /blog/ www.twitter.com/hullsean. Infrastructure-As-A-Service ( IaaS ).

298 views • 11 slides

Amazon Web Services

Amazon Web Services. By, Rajesh Kandepu. Introduction.

548 views • 14 slides

Amazon Web Services

Amazon Web Services. CSE 490H. This presentation incorporates content licensed under the Creative Commons Attribution 2.5 License. Overview. Questions about Project 3? EC2 S3 Putting them together. Brief Virtualization Review. Host and Guest Systems. Fully Virtualized Machine.

487 views • 36 slides

Amazon Web Services

Amazon Web Services. Account Setup. Pre-requisites. A valid Credit / Debit Card Minimum $1 balance in the card A valid E-mail address. Account Setup : Create Account. Step 1

311 views • 19 slides

Amazon Web Services

Amazon Web Services. Reza Yousefzadeh 12/9/2014. Outline. What is cloud Computing? Cloud Computing: XaaS Amazon Web Services Amazon EC2. Issues Facing Developers. 70% of Web Development Effort is “Muck”: Data Centers Bandwidth / Power / Cooling Operations Staffing

549 views • 22 slides

Amazon Web Services

Amazon Web Services. Nikolay Tomitov Technical Trainer SoftAcad.bg. Topics Today. What are Amazon Web services (AWS) ? What’s cool when developing with AWS ? Architecture of AWS Quota & Pricing Amazon Web Services Demo application Deploying Simple Applications.

694 views • 29 slides

amazon-web-services-training

amazon-web-services-training

Acute learn technologies is one of the best amazon webservices training institute in Hyderabad We are giving online training and class room Training.

76 views • 1 slides

Amazon Web Services Training

Amazon Web Services Training

Acutelearn is leading training company, provides corporate , online and classroom training <br>on various technologies like Cloud computing , AWS , Azure , Office 365, Openstack , <br>devops , Citrix , Vmware , Cisco , EMC , Microsoft , Networking , Netscaler .<br>For more information reach us on 917702999361 / 371 www.acutelearn.in

87 views • 3 slides

Amazon Web Services Training

Acutelearn is leading training company, provides corporate , online and classroom training on various technologies like Cloud computing , AWS , Azure , Office 365, Openstack , devops , Citrix , Vmware , Cisco , EMC , Microsoft , Networking , Netscaler . For more information reach us on 917702999361 / 371 www.acutelearn.in

111 views • 3 slides

Amazon Web Services

SSDN Technologies provide best classes of Amazon web services at our Gurgaon branch. Cloud computing is now popular technologies in IT sector by this technologies we can use new and updated application with a small amount.

38 views • 2 slides

Amazon Web Services

http://www.learntek.org/product/amazon-web-services-training/ Learntek is global online training provider on Big Data Analytics, Hadoop, Machine Learning, Deep Learning, IOT, AI, Cloud Technology, DEVOPS, Digital Marketing and other IT and Management courses. We are dedicated to designing, developing and implementing training programs for students, corporate employees and business professional. www.learntek.org

410 views • 21 slides

Amazon Web Services Training

Real Time Experts offers best Amazon Web Services Training in Bangalore with most experienced professionals. Our Instructors are working in Amazon Web Services and related technologies for more years in MNC’s. Real Time Experts located in various places in Bangalore. We are the best Training Institute offers certification oriented Amazon Web Services Training in Bangalore. Our participants will be eligible to clear all type of interviews at end of our sessions.

160 views • 4 slides

amazon web services training

amazon web services training

Cloud is a new normal in todayu2019s IT industry. One of the most challenging steps required to deploy an application infrastructure in the cloud involves the physics of moving data into and out of the cloud. Amazon Web Services (AWS) provides a number of services for moving data, and each solution offers various levels of speed, security, cost, and performance. This paper outlines the different AWS services that can help seamlessly transfer on-premises data to and from the AWS Cloud.

71 views • 6 slides

Amazon web services training

Amazon web services training

ExcelR provides AWS (amazon web services) training in hyderabad with top notch faculty with real time experience having 6200 trained professionals on AWS certification training. Providing benefits of jumbo pass for a limited period offer. Life time access to self-paced https://www.excelr.com/amazon-web-services-aws-training-in-hyderabad/ AWS training videos with practical scenarios. ExcelR is an industry leader in AWS certification training.

85 views • 6 slides

Amazon Web Services

Amazon Web Services. The Blue Book pages 19 onwards. References. http://developer.amazonwebservices.com/connect/forumindex.jspa. An overview of AWS. AWS is Amazon’s umbrella description of all of their web-based technology services. Mainly infrastructure services:

249 views • 12 slides

Amazon Web Services

376 views • 36 slides

Amazon Web Services

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.

123 views • 10 slides

Aws (Amazon Web Services)

Aws (Amazon Web Services)

Getting AWS affirmed shows that you have the absolute most sought after (and productive) aptitudes as approved by one of the most unmistakable substances in cloud computing. In the endeavor, accreditation exhibits a common comprehension of a stage, a mutual phrasing, and a specific degree of cloud aptitude that can accelerate time to an incentive for cloud ventures.

103 views • 3 slides

presentation on aws services

Empower socially responsible purchasing

Get it on Google Play

Watch now: Amazon Business Reshape 2023

  • Contact sales

There was an error fetching results

  • Check your spelling
  • Broaden your search by using fewer or more general words
  • Free shipping
  • Business Prime
  • Amazon Business blog
  • Customer success stories
  • Release notes

tile customer success stories office tex

A woman-owned small business increases revenue +40% on Amazon Business by displaying diversity certifications to attract new customers.

tile customer success stories sugar mtn

Simplifying ordering, and helping create a balance between empowerment and speed of delivery.

Getting Started with Amazon Web Services

Get started with Amazon Business.

Getting started with amazon web services.

Stephanie de Albequerque, Community Manager, AWS shares the history of cloud computing, how we engage with cloud computing today, and the resources available to you as a small business within AWS.

AWS Presentation Highlights

Find a summary of video highlights below or download the Getting Started with Amazon Web Services presentation .

Cloud Computing Basics

Cloud computing is the on-demand delivery of IT resources over the internet with a pay-as-you-go pricing. Instead of buying, owning, and maintaining data centers and servers, you can access technology services, such as computing power, storage, and databases on an as-needed basis from a cloud provider, such as Amazon Web Services. You can think of the cloud like paying for your electricity bill. You pay for what you use - when you switch off the lights, you're no longer paying for it. This in contrast with traditional data centers. You don't need to provision IT resources months in advance. You don't need to keep assets that you don't need anymore. And there's far less need to forecast the demand for your IT resources because you can provision them in a matter of minutes.

Since its introduction over 16 years ago, AWS has been supporting businesses to become more agile in how they access IT resources, helping them save costs, increase agility and improve their security posture. You might not notice, but you're interacting with cloud technologies on a daily basis - from watching your favorite show on Netflix to the stats you see on the screen during a NFL game. These businesses are using  AWS cloud technology to power some of their most innovative features. These same resources are available to businesses of all sizes with the click of a button. Cloud is the great equalizer, giving businesses of any size access to the technology and services that enable you to respond to new industry dynamics, test new ideas, and bring products and services to market quickly.

Today, cloud computing has helped make IT resources more readily available . Learn about how you can get started with AWS and cloud computing as a small business below.

AWS Connected Community

Determining how to best use technology to create a competitive advantage is challenging, and identifying trusted resources adds to the burden. Successful businesses of any size, find joining a community of like-minded business leaders is an efficient way to get relevant information to facilitate the cloud decision journey.

That’s why AWS created the AWS Connected Community as the first cloud community for business leaders to connect, learn, and share—overcoming the common barriers of technology adoption, together. The AWS Connected Community brings together years of AWS expertise and the unique perspective of small and medium-sized businesses to give you an uncomplicated and interactive place to support your digital transformation.

Completely free to join and built specifically for businesses of your size, the AWS Connected Community is another way AWS helps you build a better business—securely, swiftly, collaboratively.

The AWS Connected Community offers the following benefits:

  • A completely free to join community specifically for small and medium-sized businesses 
  • Access to small business and cloud experts
  • Up-to-date events and on-demand training 
  • Opportunity to learn from peers 
  • Exclusive offers for software and services tailored to your business needs

Learn more about the AWS Connected Community

AWS SkillBuilder

Get digital training and learn from AWS experts through AWS SkillBuilder.

Skill Builders is a Digital Training Library consists of over 500 courses, which are available on demand, anytime, anywhere. This includes foundational and advanced content across AWS services and solutions ML, IoT, Storage, and more. Because it is developed and built by AWS experts it is accurate , which ensures you use and deploys AWS services the right way.

Skill builder has digital training that is designed to meet your various needs:

  • Expertise level: foundational, intermediate, and advanced.
  • Role-based training, for example for AWS Architects, Developers, and Systems Operations.
  • Domain-specific, such as Machine Learning , Storage, Internet of Things and much more. 

Visit skillbuilder.aws to learn more about our Digital Training.

Learn more at AWS Skillbuilder  

AWS Free Tier  

Get free, hands-on experience with the AWS platform, products, and services. If you are ready to get started using AWS,you can create an account and explore more than 100 products and start building on AWS using the Free Tier.. AWS Free Tier Benefits:

  • Automatically activated for new AWS accounts
  • Enjoy free-tier offers for 12-months following your initial sign-up date to AWS
  • Applicable to 100 services * 

Learn more about the AWS Free Tier

*Not all AWS Services are covered under the Free Tier, check the Free Tier offering to make sure the services you intend to use are covered

Get Started with Amazon Business

Related Content

  • Español

Translation

We'll translate the most important information for your browsing, shopping, and communications. Our translations are provided for your convenience. The English version of  business.amazon.com , including our Conditions of Use, is the definitive version.  Learn more

Additional languages

More languages are available from other Amazon websites.

presentation on aws services

Robert's Newsletter

Presentation Slides: An Introduction to Amazon Web Services

Robert Greiner

In a few short years, cloud computing has gone from being viewed as a luxury or fancy toy and emerged as an integral part of the near-term future of companies in every industry. Enterprises are no longer asking "why cloud?" but rather "how do I get started with a cloud solution?"

Architecting a cloud solution is vastly different from a typical on-premises application, and it is important to understand the full range of tools and configuration options at your disposal in order to maximize value for your client or company.

In this presentation, we gave a brief overview of cloud computing and spent some time going into the details of the robust set of offerings that AWS provides their customers.

  • Share on Twitter
  • Share on Facebook
  • Share on LinkedIn
  • Share on Pinterest
  • Share via Email

Robert Greiner

Robert Greiner Twitter

Professional optimist. I write a weekly newsletter for humans at the intersection of business, technology, leadership, and career growth.

Subscribe for Free

Want to stay ahead of the curve? Subscribe now to receive the latest updates, actionable insights, and thought-provoking ideas around business, technology, and leadership straight to your inbox.

Related Posts

Navigating the upside down as a technology leader.

Ideas for leading technology organizations with confidence and creativity.

Artist for a Day

The future of creative output is multiplied by AI.

The Auto Industry's Cloud Awakening

Auto manufacturers are behind the cloud adoption curve but are well-positioned to unlock the future of mobility by building foundational capabilities across six key areas.

SlidePlayer

  • My presentations

Auth with social network:

Download presentation

We think you have liked this presentation. If you wish to download it, please recommend it to your friends in any social system. Share buttons are a little bit lower. Thank you!

Presentation is loading. Please wait.

Amazon Web Services (AWS)

Published by Meta Geisler Modified over 4 years ago

Similar presentations

Presentation on theme: "Amazon Web Services (AWS)"— Presentation transcript:

Amazon Web Services (AWS)

AWS Simple Icons v2.1 Usage Guidelines Check to make sure you have the most recent set of AWS Simple Icons. This version was last updated 4/18/2013 (v2.1)

presentation on aws services

Marihebert Leal. Alteryx is the fastest analytics plataform that is purpose- built to empower data analysts & their productivity. It blend complex data,

presentation on aws services

The eHealth Services Capstone Project

presentation on aws services

AWS Simple Icons v15.9 AWS Simple Icons: Usage Guidelines Check to make sure you have the most recent set of AWS Simple Icons This version was last updated.

presentation on aws services

How AWS Pricing Works Jinesh Varia Technology Evangelist.

presentation on aws services

Cloud services Amazon Web Service (AWS) Intro and usage.

presentation on aws services

AWS AWS Certified Solutions Architect

presentation on aws services

Deploying Docker Datacenter on AWS © 2016, Amazon Web Services, Inc. or its affiliates. All rights reserved.

presentation on aws services

Moving to the cloud As easy as 1, 2, …4? Kevin Dermody Project Manager - Multimedia Services - HEAnet.

presentation on aws services

Architecting Enterprise Workloads on AWS Mike Pfeiffer.

presentation on aws services

AWS Simple Icons v AWS Simple Icons: Usage Guidelines

presentation on aws services

Amazon Web Services (aws)

presentation on aws services

AWS Solution Architect Associate Exam associate-dumps.html Free AWS Solution Training Exam Question.

presentation on aws services

Transform yourself and build your IT cloud career path

presentation on aws services

100% Exam Passing Guarantee & Money Back Assurance

presentation on aws services

Amazon AWS Solution Architect Associate Exam Questions PDF associate.html AWS Solution Training Exam.

presentation on aws services

AWS-Certified-Solutions-Architect-Professional

presentation on aws services

Louisville aws user group

presentation on aws services

Amazon AWS Certified Developer Associate Exam Questions PDF associate-dumps.html AWS Solution Training.

presentation on aws services

Amazon Storage- S3 and Glacier

About project

© 2024 SlidePlayer.com Inc. All rights reserved.

Presentation tier

The presentation tier is responsible for interacting with the logic tier through the API Gateway REST endpoints exposed over the internet. Any HTTPS capable client or device can communicate with these endpoints, giving your presentation tier the flexibility to take many forms (desktop applications, mobile apps, webpages, IoT devices, and so forth). Depending on your requirements, your presentation tier can use the following AWS serverless offerings:

Amazon Cognito - A serverless user identity and data synchronization service that enables you to add user sign-up, sign-in, and access control to your web and mobile apps quickly and efficiently. Amazon Cognito scales to millions of users and supports sign-in with social identity providers, such as Facebook, Google, and Amazon, and enterprise identity providers through SAML 2.0.

Amazon S3 with CloudFront - Enables you to serve static websites, such as single-page applications, directly from an S3 bucket without requiring provision of a web server. You can use CloudFront as a managed content delivery network (CDN) to improve performance and enable SSL/TL using managed or custom certificates.

AWS Amplify is a set of tools and services that can be used together or on their own, to help front-end web and mobile developers build scalable full stack applications, powered by AWS. Amplify offers a fully managed service for deploying and hosting static web applications globally, served by Amazon's reliable CDN with hundreds of points of presence globally and with built-in CI/CD workflows that accelerate your application release cycle. Amplify supports popular web frameworks including JavaScript, React, Angular, Vue, Next.js, and mobile platforms including Android, iOS, React Native, Ionic, and Flutter. Depending on your networking configurations and application requirements, you might need to enable your API Gateway APIs to be cross-origin resource sharing (CORS) – compliant. CORS compliance allows web browsers to directly invoke your APIs from within static webpages.

When you deploy a website with CloudFront, you are provided a CloudFront domain name to reach your application (for example, d2d47p2vcczkh2.cloudfront.net ). You can use Amazon Route 53 to register domain names and direct them to your CloudFront distribution, or direct already-owned domain names to your CloudFront distribution. This enables users to access your site using a familiar domain name. Note that you can also assign a custom domain name using Route 53 to your API Gateway distribution, which enables users to invoke APIs using familiar domain names.

Warning

To use the Amazon Web Services Documentation, Javascript must be enabled. Please refer to your browser's Help pages for instructions.

Thanks for letting us know we're doing a good job!

If you've got a moment, please tell us what we did right so we can do more of it.

Thanks for letting us know this page needs work. We're sorry we let you down.

If you've got a moment, please tell us how we can make the documentation better.

Fujitsu

  • Press Releases

Fujitsu and AWS deepen global partnership to accelerate legacy applications modernization on the cloud

Facebook

Fujitsu and AWS will launch a new Modernization Acceleration Joint Initiative to enable customers across industries to drive digital transformation with fast and secure legacy modernization

Fujitsu limited, amazon web services japan g.k..

Tokyo, March 18, 2024

Fujitsu Limited and Amazon Web Services (AWS), an Amazon.com, Inc. company (NASDAQ: AMZN) today announced an expanded partnership ( 1 ) to accelerate the modernization of legacy applications on AWS Cloud by launching a Modernization Acceleration Joint Initiative.

Launching on April 1, Fujitsu and AWS will provide assessment, migration, and modernization of legacy mission critical applications running on on-premise mainframes and UNIX servers onto AWS Cloud. The joint initiative will support customers across industries including finance, retail and automotive, as they modernize legacy applications on AWS Cloud, helping to keep up with rapidly changing business conditions with the agility and resiliency brought with modern applications.

The initiative combines Fujitsu's industry-leading systems integration capabilities with AWS Professional Services, a global team of AWS experts that helps customers innovate faster and securely with AWS services including AWS Mainframe Modernization, an elastic mainframe service and set of development tools for migrating and modernizing mainframe and legacy workloads.

Joint press conference on the global partnership with AWS to accelerate legacy modernization

Megumi Shimazu, Corporate Executive Officer, SEVP, Head of Global Technology Solutions, Fujitsu Limited, said, ”We are look forward to deepening our partnership with AWS, which shares our commitment to solving customers’ challenges with technology by initiating a new global effort to help customers. By combining AWS’ broadest and deepest cloud-enabled technologies with Fujitsu’s years of mainframe and UNIX server expertise, we can deliver fast, secure modernization, allowing customers to focus on accelerating innovation across industries. As the next step in modernization, we will leverage a range of Fujitsu Uvance offerings to contribute to empowering our customers to achieve greater sustainability in their businesses.”

Uwem Ukpong, vice president, Global Services, Amazon Web Services said, “We welcome Fujitsu’s commitment to this expanded partnership to drive digital transformation by accelerating the migration and modernization of legacy applications on AWS. Since 2012, both Fujitsu and AWS have collaborated to help customers in Japan and globally to innovate, improve productivity, and solve their most complex business challenges. We look forward to working with Fujitsu to expand our joint delivery capabilities and help customers gain insights from mainframe data in the generative AI era.”

Deepening collaboration to accelerate modernization efforts by customers such as Takashimaya

Both Fujitsu and AWS collaborated to optimize AWS Mainframe Modernization to support customers using Fujitsu's flagship GS21 series mainframes. AWS Mainframe Modernization provides AWS Blu Age, a refactoring solution to automatically convert mainframe applications that use legacy programming languages such as COBOL and PL/I to Java with support from AWS Professional Services. This joint engineering effort helps customers using Fujitsu’s GS21 series mainframe reduce the time and cost required for migration and modernization.

Fujitsu and AWS have been working on the proof of concept (PoC) to modernize one of Fujitsu’s mission critical applications running on its own GS21 series mainframes on AWS Cloud. AWS Blu Age successfully converts the application with COBOL code to Java and the modernized application operates exactly same on AWS Cloud.

Fujitsu’s expertise in integrating customers' mission critical applications such as production management application and sales logistics application on its on-premise mainframes and UNIX servers, together with Fujitsu Cloud Managed Service , a Hybrid IT solution in Fujitsu Uvance portfolio, also helps customers optimize cloud operations after migrating mainframe applications to AWS. The two companies are already working with customers such as Takashimaya Co., Ltd., a major Japanese department store chain, on their legacy migration, as a pilot initiative.

As part of this collaboration, Fujitsu and AWS will support the first 40 customers in Asia, Europe, and North America as well as other key regions using Fujitsu's GS21 series mainframes to migrate by 2029. The two companies will expand the scope of the joint initiative to support customers using Fujitsu UNIX servers and mainframes from other companies in the following phase.

Looking ahead, Fujitsu and AWS will also leverage artificial intelligence (AI) and generative AI technologies to accelerate mainframe modernization at scale, and incorporate automation in areas like code analysis, cloud environment management, and testing to enable cost saving, agility, resilience, and innovation.

  • [1] In this announcement, a global partnership means international collaboration between Fujitsu and AWS.

Presentation materials of Fujitsu and AWS joint press conference

Held on Mar. 18th 2024, 11:00 (JST)

presentation on aws services

About Fujitsu

Fujitsu’s purpose is to make the world more sustainable by building trust in society through innovation. As the digital transformation partner of choice for customers in over 100 countries, our 124,000 employees work to resolve some of the greatest challenges facing humanity. Our range of services and solutions draw on five key technologies: Computing, Networks, AI, Data & Security, and Converging Technologies, which we bring together to deliver sustainability transformation. Fujitsu Limited (TSE:6702) reported consolidated revenues of 3.7 trillion yen (US$28 billion) for the fiscal year ended March 31, 2023 and remains the top digital services company in Japan by market share. Find out more: www.fujitsu.com .

Press Contacts

Fujitsu Limited Public and Investor Relations Division Inquiries

Amazon Web Services Japan GK Public Relations: [email protected]

All company or product names mentioned herein are trademarks or registered trademarks of their respective owners. Information provided in this press release is accurate at time of publication and is subject to change without advance notice.

IMAGES

  1. What is AWS? Introduction to Amazon Web Services [AWS Guide]

    presentation on aws services

  2. AWS PPT

    presentation on aws services

  3. Why to choose AWS Cloud for your Web Application?

    presentation on aws services

  4. PPT

    presentation on aws services

  5. AWS Data Lake Foundation Architecture

    presentation on aws services

  6. AWS Adaptive ECommerce Store Architecture PowerPoint Template

    presentation on aws services

VIDEO

  1. AWS S3

  2. Kelompok 1 Web Presentation AWS C4

  3. AWS Training

  4. Overview Of AWS Services Part 1

  5. AWS S3 presentation

  6. AWS Service presentation

COMMENTS

  1. Overview of Amazon Web Services

    Amazon Web Services offers a broad set of global cloud-based products including compute, storage, databases, analytics, networking, mobile, developer tools, management tools, IoT, security, and enterprise applications: on-demand, available in seconds, with pay-as-you-go pricing. From data warehousing to deployment tools, directories to content ...

  2. PPT

    Amazon Web Services (AWS) provides a number of services for moving data, and each solution offers various levels of speed, security, cost, and performance. This paper outlines the different AWS services that can help seamlessly transfer on-premises data to and from the AWS Cloud.

  3. Getting Started with Amazon Web Services

    AWS Presentation Highlights . Find a summary of video highlights below or download the Getting Started with Amazon Web Services presentation.. Cloud Computing Basics. Cloud computing is the on-demand delivery of IT resources over the internet with a pay-as-you-go pricing.

  4. Presentation Slides: An Introduction to Amazon Web Services

    In this presentation, we gave a brief overview of cloud computing and spent some time going into the details of the robust set of offerings that AWS provides their customers. Introduction to Amazon Web Services from Robert Greiner. Please consider subscribing, it's free. Professional optimist.

  5. Hands-On Tutorials for Amazon Web Services (AWS)

    Migration. Networking & Content Delivery. Security, Identity, & Compliance. Serverless. Storage. Something went wrong. We have been notified and are working to fix the issue. Discover tutorials, digital training, reference deployments and white papers for common AWS use cases.

  6. Amazon Web Services (AWS)

    Download ppt "Amazon Web Services (AWS)" Introduction To AWS Learning Objectives: In this module, you will learn about the different services provided by AWS. You will be provided with an overview of important resources required for architecting an application. Topics: Cloud Computing Cloud deployment and service models AWS Global ...

  7. Reference Architecture Examples and Best Practices

    We are excited to announce the availability of improved AWS Well-Architected Framework guidance. In this release, we have made the implementation guidance for the new and updated best practices more prescriptive, including enhanced recommendations and steps on reusable architecture patterns targeting specific business outcomes in the Amazon Web Services (AWS) Cloud.

  8. AWS Events Content

    AWS Events Content. Experience our event content at your fingertips. Explore, view, and download presentation decks from your favorite sessions and discover what's new. Learn from AWS experts, customers, and partners to continue your educational journey in the cloud.

  9. Aws PowerPoint templates, Slides and Graphics

    Share and navigate important information on five stages that need your due attention. This template can be used to pitch topics like Services, Average, applications. In addtion, this PPT design contains high resolution images, graphics, etc, that are easily editable and available for immediate download. Slide 1 of 2.

  10. PDF AWS

    © 2018, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential and Trademark N a m e Presley, Elvis Aaron A d d r e s s Graceland ...

  11. PDF Improving Developer Productivity

    © 2018, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Agenda • About JetBrains • Develop • Build

  12. Cloud Products

    Amazon Web Services offers a broad set of global cloud-based products that help organizations move faster, lower IT costs, and scale. Explore Top Product Categories Compute Storage Database Networking & Content Delivery Analytics Machine Learning ...

  13. PDF VMware CloudTM on AWS

    •Direct access to native AWS services Service Highlights vSphere Powered by VMware . Confidential │ ©2019 VMware, Inc. 7 On-demand / hourly model 1 or 3-year reserved model Buy add-on services VMware SPP or HPP Credits Purchase Orders Credit Card Leverage existing investments

  14. Presentation tier

    The presentation tier is responsible for interacting with the logic tier through the API Gateway REST endpoints exposed over the internet. ... AWS Amplify is a set of tools and services that can be used together or on their own, to help front-end web and mobile developers build scalable full stack applications, powered by AWS. Amplify offers a ...

  15. Fujitsu and AWS deepen global partnership to accelerate legacy

    Fujitsu Limited, Amazon Web Services Japan G.K. Tokyo, March 18, 2024. Fujitsu Limited and Amazon Web Services (AWS), an Amazon.com, Inc. company (NASDAQ: AMZN) today announced an expanded partnership to accelerate the modernization of legacy applications on AWS Cloud by launching a Modernization Acceleration Joint Initiative.

  16. AWS Architecture Icons

    On this page you will find an official collection of AWS Architecture Icons (formerly Simple Icons) that contain AWS product icons, resources, and other tools to help you build diagrams. Customers and partners are permitted by AWS to use the resources below to create architecture diagrams. The icons are designed to be simple so that you can ...

  17. PDF ЦИФРОВАЯ ТРАНСФОРМАЦИЯ

    Andy Jassy, CEO Amazon Web Services Wall Street Journal. 7. "Cloud Market Not Winner Take All: AWS Chief." October 2, 2017 "Nearly all enterprises that AWS works with today start out with a significant on-premises footprint and take a hybrid approach to cloud computing."

  18. AWS Financial Services Symposium

    Please join us for the 2024 AWS Financial Services Symposium, an exclusive in-person event program designed for executive leaders in the financial services industry. Explore how financial services firms are working with AWS to manage and optimize the power of data to deliver better experiences to their customers, make smarter business decisions, and fortify critical applications.