Interacting With Aws Slides
Interacting With Aws Slides
Interacting With Aws Slides
David Tucker
TECHNICAL ARCHITECT & CTO CONSULTANT
@_davidtucker_ davidtucker.net
AWS Cloud Practitioner Learning Path
AWS Management Console
A web and app based interface for interacting with most
all of the 150+ AWS services. All major browsers and
mobile operating systems are supported.
AWS Command Line Interface (CLI)
Tool to manage your use of AWS services from the
command line on Windows, Mac, and Linux. Most every
task that can be done in the console can be done in with
the CLI.
Using the AWS CLI
{
"Users": [
{
"Path": "/",
"UserName": “test.user",
"UserId": "AIDARCBHTJLQEYXXXXXXX",
"Arn": “arn:aws:iam::XXXXXXXXXXXX:user/test.user",
"CreateDate": "2019-09-17T19:51:57Z"
}
]
}
JavaScript
PHP Python
(Browser)
Ruby Go C++
Console is a great method for testing out
AWS services
Repeating tasks can be automated using
Interacting the CLI or SDK
Scenario 2
Scenario 3
Summary
Reviewed the ways you interact with
Summary AWS services
Explored the AWS Console and its use
Introduced the AWS Command Line
Interface and its use
Introduced the AWS Software Developer
Kit and supported languages
Scenario 1
Roger’s company runs several
production workloads in AWS
They have a new web application that
manages digital assets for marketing
They need to automatically create a user
account in Amazon Cognito on sign-up
They want this step seamlessly
integrated into the application
Which interaction method would
Roger’s company use for this?
Solution: Software Development Kit (SDK)
Scenario 2
Scenario 3