SlideShare una empresa de Scribd logo
1 de 144
Descargar para leer sin conexión
Writing JavaScript Applications with the AWS SDK
by Loren Segal
November 15th, 2013

© 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified, or distributed in whole or in part without the express consent of Amazon.com, Inc.
Wednesday, November 27, 13
JavaScript
is everywhere.

Wednesday, November 27, 13
AWS SDK for
JavaScript in Node.js
Almost a year old!

Wednesday, November 27, 13
AWS SDK for
JavaScript in the Browser
Desktop or mobile devices

Wednesday, November 27, 13
Let’s use them.
Wednesday, November 27, 13
Goals

Wednesday, November 27, 13
1. Learn about AWS SDK for Node.js

Goals

Wednesday, November 27, 13
1. Learn about AWS SDK for Node.js

Goals

Wednesday, November 27, 13

2. Introduce AWS SDK for JavaScript
in the Browser
1. Learn about AWS SDK for Node.js

Goals

2. Introduce AWS SDK for JavaScript
in the Browser
3. Write a two-tiered web application
using JavaScript, HTML, and CSS

Wednesday, November 27, 13
AWS SDK for
Node.js
Wednesday, November 27, 13
Full Service Coverage
Support for over 30 AWS services

Wednesday, November 27, 13
Extensible Clients
Customize any part of the request cycle

Wednesday, November 27, 13
Standard Node.js Idioms
Streams, EventEmitter, Domains

Wednesday, November 27, 13
Open Source
Apache License, Version 2.0
http://github.com/aws/aws-sdk-js

Wednesday, November 27, 13
Getting Started
AWS SDK for Node.js

Wednesday, November 27, 13
Installing
Bash

$ npm install aws-sdk

Wednesday, November 27, 13
Loading
JS

var AWS = require(‘aws-sdk’);

Wednesday, November 27, 13
Configuring
the SDK
AWS.config

Wednesday, November 27, 13
Configuring
the SDK

Credentials *

AWS.config
* Required by the SDK
Wednesday, November 27, 13
Configuring
the SDK

Credentials *
Region *

AWS.config
* Required by the SDK
Wednesday, November 27, 13
Configuring
the SDK
AWS.config

Credentials *
Region *
Extras
* Required by the SDK

Wednesday, November 27, 13
Configuring
Credentials
Wednesday, November 27, 13
Configuring
Credentials
Wednesday, November 27, 13

IAM roles for EC2
Instances
Configuring
Credentials
Wednesday, November 27, 13

IAM roles for EC2
Instances
Environment Variables
Configuring
Credentials
Wednesday, November 27, 13

IAM roles for EC2
Instances
Environment Variables
File System (outside
source control)
Do Not Hardcode
Credentials
Unless they are read-only and scoped to specific resources.
Wednesday, November 27, 13
IAM Roles for EC2 Instances

=
Zero Configuration
Wednesday, November 27, 13
Environment Variables
AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY
AWS_REGION*
Wednesday, November 27, 13
Configuring
Region and Extras

Wednesday, November 27, 13
JS

AWS.config.update({
region: ‘us-west-2’, // AWS_REGION
maxRetries: 10,

// default: 3

logger: process.stdout,
// ... more options ...
});

Wednesday, November 27, 13
Config From a File
JS

AWS.config.loadFromPath(‘./config.json’);
If this file contains credentials, keep it out of source control
Wednesday, November 27, 13
Working with
Services
Wednesday, November 27, 13
Service
Objects
Wednesday, November 27, 13
AWS.S3

Service
Objects
Wednesday, November 27, 13
Service
Objects
Wednesday, November 27, 13

AWS.S3
AWS.EC2
Service
Objects
Wednesday, November 27, 13

AWS.S3
AWS.EC2
AWS.DynamoDB
Service
Objects
Wednesday, November 27, 13

AWS.S3
AWS.EC2
AWS.DynamoDB
AWS.SQS
Service
Objects
Wednesday, November 27, 13

AWS.S3
AWS.EC2
AWS.DynamoDB
AWS.SQS
AWS.SNS
Service
Objects
Wednesday, November 27, 13

AWS.S3
AWS.EC2
AWS.DynamoDB
AWS.SQS
AWS.SNS
...
Constructing a Service Object
JS

var ec2 = new AWS.EC2([config]);

Wednesday, November 27, 13
Calling an Operation
JS

ec2.describeInstances(params, callback);

Wednesday, November 27, 13
The Callback
JS

function (err, data) { ... }

Wednesday, November 27, 13
Getting a Request Object
JS

var req = ec2.describeInstances(params);

Wednesday, November 27, 13
Sending the Request Object
JS

var resp = req.send(callback);

Wednesday, November 27, 13
Adding Listeners
to the Request Object
JS

req.on(‘complete’, function(resp) { ... });

Wednesday, November 27, 13
The Request Cycle
Wednesday, November 27, 13
Send AWS.Request
Get AWS.Response

Wednesday, November 27, 13
Request Lifecycle

Wednesday, November 27, 13
Request Lifecycle
Operation

Wednesday, November 27, 13
Request Lifecycle
Operation

Wednesday, November 27, 13
Request Lifecycle
Operation

AWS.Request

Wednesday, November 27, 13
Request Lifecycle
Operation

send()
AWS.Request

Wednesday, November 27, 13
Request Lifecycle
Emitted Lifecycle Events
Operation

send()
AWS.Request

Wednesday, November 27, 13

complete
success
build ... sign ... send ... error
Request Lifecycle
Emitted Lifecycle Events
Operation

send()
AWS.Request

Wednesday, November 27, 13

complete
success
build ... sign ... send ... error
callback
Request Lifecycle
Emitted Lifecycle Events
Operation

send()
AWS.Request

Wednesday, November 27, 13

complete
success
build ... sign ... send ... error
callback
AWS.Response
AWS.Request

Wednesday, November 27, 13
.send(callback)

AWS.Request

Wednesday, November 27, 13
AWS.Request

Wednesday, November 27, 13

.send(callback)
.on(event, callback)
AWS.Request

Wednesday, November 27, 13

.send(callback)
.on(event, callback)
.httpRequest
AWS.Request

Wednesday, November 27, 13

.send(callback)
.on(event, callback)
.httpRequest
...
AWS.Response

Wednesday, November 27, 13
.error
AWS.Response

Wednesday, November 27, 13
.error
.data
AWS.Response

Wednesday, November 27, 13
AWS.Response

Wednesday, November 27, 13

.error
.data
.retryCount
AWS.Response

Wednesday, November 27, 13

.error
.data
.retryCount
.httpResponse
AWS.Response

Wednesday, November 27, 13

.error
.data
.retryCount
.httpResponse
...
Request
Lifecycle
Recap

Wednesday, November 27, 13
Request
Lifecycle
Recap

Wednesday, November 27, 13

Send AWS.Request
Request
Lifecycle
Recap

Wednesday, November 27, 13

Send AWS.Request
Emits Lifecycle Events
Request
Lifecycle
Recap

Wednesday, November 27, 13

Send AWS.Request
Emits Lifecycle Events
Callback with AWS.Response
Features
of the SDK
Wednesday, November 27, 13
SDK
Features

Wednesday, November 27, 13
Global Configuration Object

SDK
Features

Wednesday, November 27, 13
SDK
Features

Wednesday, November 27, 13

Global Configuration Object
Bound Parameters
SDK
Features

Wednesday, November 27, 13

Global Configuration Object
Bound Parameters
Response Pagination
SDK
Features

Wednesday, November 27, 13

Global Configuration Object
Bound Parameters
Response Pagination
Event Listeners (Per-Service and Global)
SDK
Features

Wednesday, November 27, 13

Global Configuration Object
Bound Parameters
Response Pagination
Event Listeners (Per-Service and Global)
API Version Locking
SDK
Features

Wednesday, November 27, 13

Global Configuration Object
Bound Parameters
Response Pagination
Event Listeners (Per-Service and Global)
API Version Locking
Secure Credential Management
AWS SDK
for JavaScript
in the Browser
Wednesday, November 27, 13
Developer Preview
Looking for Feedback

Wednesday, November 27, 13
Getting the SDK
language

<script src=”https://sdk.amazonaws.com/js/aws-sdk-2.0.0-rc1.min.js” />

Wednesday, November 27, 13
5 Supported
Services

Wednesday, November 27, 13
Amazon S3

5 Supported
Services

Wednesday, November 27, 13
5 Supported
Services

Wednesday, November 27, 13

Amazon S3
Amazon DynamoDB
5 Supported
Services

Wednesday, November 27, 13

Amazon S3
Amazon DynamoDB
Amazon SQS
5 Supported
Services

Wednesday, November 27, 13

Amazon S3
Amazon DynamoDB
Amazon SQS
Amazon SNS
5 Supported
Services

Wednesday, November 27, 13

Amazon S3
Amazon DynamoDB
Amazon SQS
Amazon SNS
STS
All Modern Browsers
28.0+

Wednesday, November 27, 13

23.0+

10+

17.0+

5.1+
Usage is the same.
But in your browser or mobile device

Wednesday, November 27, 13
Configuration
is Different
Wednesday, November 27, 13
Why is it different?

Two-Tier Web
Applications
Wednesday, November 27, 13
Traditional Application Architecture
Your

Services

nodeJS

Node.js Backend

Wednesday, November 27, 13

Other Services
Two-Tier Application Architecture
nodeJS

SDK on the Device
nodeJS

Your
nodeJS

Wednesday, November 27, 13

Services
Benefits

Wednesday, November 27, 13
Fewer moving parts

Benefits

Wednesday, November 27, 13
Fewer moving parts
Easy prototyping

Benefits

Wednesday, November 27, 13
Benefits

Wednesday, November 27, 13

Fewer moving parts
Easy prototyping
Deploying as simple as
copying files to Amazon S3
Benefits

Wednesday, November 27, 13

Fewer moving parts
Easy prototyping
Deploying as simple as
copying files to Amazon S3
Fully dynamic app for
pennies a month
Next Level
Web Apps
Wednesday, November 27, 13
App
Ideas
Wednesday, November 27, 13
Forum Software

App
Ideas
Wednesday, November 27, 13
App
Ideas
Wednesday, November 27, 13

Forum Software
Blog Commenting Service
App
Ideas
Wednesday, November 27, 13

Forum Software
Blog Commenting Service
Blogging Platform
App
Ideas
Wednesday, November 27, 13

Forum Software
Blog Commenting Service
Blogging Platform
Firefox/Chrome Extensions
App
Ideas
Wednesday, November 27, 13

Forum Software
Blog Commenting Service
Blogging Platform
Firefox/Chrome Extensions
WinRT (Metro Style) Apps
App
Ideas
Wednesday, November 27, 13

Forum Software
Blog Commenting Service
Blogging Platform
Firefox/Chrome Extensions
WinRT (Metro Style) Apps
Any Mobile App!
Let’s Look at a
Web Application
Using nothing but
HTML, CSS, and JavaScript

Wednesday, November 27, 13
A Simple Blog
Content stored in Amazon DynamoDB
Assets in Amazon S3

Wednesday, November 27, 13
Key
Differences
Three-Tier to Two-Tier

Wednesday, November 27, 13
Key
Differences
Three-Tier to Two-Tier

Wednesday, November 27, 13

Browser Security
Key
Differences
Three-Tier to Two-Tier

Wednesday, November 27, 13

Browser Security
CORS in the browser
Credentials on device
Cross-Origin
Resource Sharing
Wednesday, November 27, 13
CORS

Wednesday, November 27, 13
CORS

Wednesday, November 27, 13

Browser sends pre-flight request
to external host.
CORS

Wednesday, November 27, 13

Browser sends pre-flight request
to external host.
Host acknowledges browser.
CORS

Wednesday, November 27, 13

Browser sends pre-flight request
to external host.
Host acknowledges browser.
Browser sends XHR request.
CORS
+ S3
Wednesday, November 27, 13
CORS
+ S3
Wednesday, November 27, 13

CORS needs special
configuration on Amazon S3.
CORS
+ S3
Wednesday, November 27, 13

CORS needs special
configuration on Amazon S3.
Configure CORS with bucket
policy.
Configuring CORS on Amazon S3

Wednesday, November 27, 13
Getting Credentials
Onto Your Device
Wednesday, November 27, 13
Getting
Credentials
Onto Your
Device
Wednesday, November 27, 13
Getting
Credentials
Onto Your
Device
Wednesday, November 27, 13

Never hardcode
credentials
Getting
Credentials
Onto Your
Device
Wednesday, November 27, 13

Never hardcode
credentials
Use Web Identity
Federation
Web Identity Federation
Use Facebook, Google, or Login with
Amazon as third-party identity providers

Wednesday, November 27, 13
Web Identity Federation
Set up IAM roles for
these identity providers

Wednesday, November 27, 13
1

2

3

Wednesday, November 27, 13
Web Identity Federation
Set up permissions for IAM role

Wednesday, November 27, 13
AWS.WebIdentityCredentials
JS

AWS.config.credentials = new AWS.WebIdentityCredentials({
RoleArn: ‘arn:aws:iam::<ACCOUNT_ID>:role/<ROLE_NAME>’,
ProviderId: ‘graph.facebook.com’,
WebIdentityToken: fbAccessToken
});

Wednesday, November 27, 13
Get a Facebook Access Token
JS

// 1. Load the FB JS SDK
// 2. Call FB.login()
FB.login(function (response) {
if (response.authResponse) {
fbAccessToken = response.authResponse.accessToken;
AWS.config.credentials = new AWS.WebIdentityCredentials({...});
});

Wednesday, November 27, 13
Same Concept
For other identity providers

Wednesday, November 27, 13
Our Community
Wednesday, November 27, 13
We ♥
Open Source
Wednesday, November 27, 13
https://github.com/

aws/aws-sdk-js
Wednesday, November 27, 13
Contributing
to the SDK
Wednesday, November 27, 13
Contributing
to the SDK
Wednesday, November 27, 13

Improve Documentation
Contributing
to the SDK
Wednesday, November 27, 13

Improve Documentation
Report Issues
Contributing
to the SDK
Wednesday, November 27, 13

Improve Documentation
Report Issues
Submit Pull Requests
Contributing
to the SDK
Wednesday, November 27, 13

Improve Documentation
Report Issues
Submit Pull Requests
Third-Party Plugins
Third Party Plugins
A great way to add features

Wednesday, November 27, 13
Node.js

Wednesday, November 27, 13
Wednesday, November 27, 13
Write More!
Wednesday, November 27, 13
Please give us your feedback on this
presentation

TLS303
As a thank you, we will select prize
winners daily for completed surveys!

Wednesday, November 27, 13

Thank You

Más contenido relacionado

La actualidad más candente

Infrastructure as Code - AWS CloudFormation
Infrastructure as Code - AWS CloudFormationInfrastructure as Code - AWS CloudFormation
Infrastructure as Code - AWS CloudFormationChamila de Alwis
 
AWS Power Tools: Advanced AWS CloudFormation and CLI
AWS Power Tools: Advanced AWS CloudFormation and CLIAWS Power Tools: Advanced AWS CloudFormation and CLI
AWS Power Tools: Advanced AWS CloudFormation and CLIAmazon Web Services
 
(DVO301) AWS OpsWorks Under the Hood
(DVO301) AWS OpsWorks Under the Hood(DVO301) AWS OpsWorks Under the Hood
(DVO301) AWS OpsWorks Under the HoodAmazon Web Services
 
Infrastructure as Code for Beginners
Infrastructure as Code for BeginnersInfrastructure as Code for Beginners
Infrastructure as Code for BeginnersDavid Völkel
 
Developing and deploying serverless applications (February 2017)
Developing and deploying serverless applications (February 2017)Developing and deploying serverless applications (February 2017)
Developing and deploying serverless applications (February 2017)Julien SIMON
 
(APP304) AWS CloudFormation Best Practices | AWS re:Invent 2014
(APP304) AWS CloudFormation Best Practices | AWS re:Invent 2014(APP304) AWS CloudFormation Best Practices | AWS re:Invent 2014
(APP304) AWS CloudFormation Best Practices | AWS re:Invent 2014Amazon Web Services
 
Account Separation and Mandatory Access Control
Account Separation and Mandatory Access ControlAccount Separation and Mandatory Access Control
Account Separation and Mandatory Access ControlAmazon Web Services
 
Building serverless apps with Node.js
Building serverless apps with Node.jsBuilding serverless apps with Node.js
Building serverless apps with Node.jsJulien SIMON
 
A 60-minute tour of AWS Compute (November 2016)
A 60-minute tour of AWS Compute (November 2016)A 60-minute tour of AWS Compute (November 2016)
A 60-minute tour of AWS Compute (November 2016)Julien SIMON
 
An introduction to serverless architectures (February 2017)
An introduction to serverless architectures (February 2017)An introduction to serverless architectures (February 2017)
An introduction to serverless architectures (February 2017)Julien SIMON
 
Building Serverless APIs on AWS
Building Serverless APIs on AWSBuilding Serverless APIs on AWS
Building Serverless APIs on AWSJulien SIMON
 
Aws microservice keynote
Aws microservice keynoteAws microservice keynote
Aws microservice keynotenextbuild
 
AWS CloudFormation and Puppet at PuppetConf - Jinesh Varia
AWS CloudFormation and Puppet at PuppetConf - Jinesh VariaAWS CloudFormation and Puppet at PuppetConf - Jinesh Varia
AWS CloudFormation and Puppet at PuppetConf - Jinesh VariaAmazon Web Services
 
AWS for Startups, London - Programming AWS
AWS for Startups, London - Programming AWSAWS for Startups, London - Programming AWS
AWS for Startups, London - Programming AWSAmazon Web Services
 
DevOps for the Enterprise: Virtual Office Hours
DevOps for the Enterprise: Virtual Office HoursDevOps for the Enterprise: Virtual Office Hours
DevOps for the Enterprise: Virtual Office HoursAmazon Web Services
 
Infrastructure as Code: Manage your Architecture with Git
Infrastructure as Code: Manage your Architecture with GitInfrastructure as Code: Manage your Architecture with Git
Infrastructure as Code: Manage your Architecture with GitDanilo Poccia
 

La actualidad más candente (20)

CloudFormation Best Practices
CloudFormation Best PracticesCloudFormation Best Practices
CloudFormation Best Practices
 
Infrastructure as Code - AWS CloudFormation
Infrastructure as Code - AWS CloudFormationInfrastructure as Code - AWS CloudFormation
Infrastructure as Code - AWS CloudFormation
 
Orchestrating the Cloud
Orchestrating the CloudOrchestrating the Cloud
Orchestrating the Cloud
 
AWS Power Tools: Advanced AWS CloudFormation and CLI
AWS Power Tools: Advanced AWS CloudFormation and CLIAWS Power Tools: Advanced AWS CloudFormation and CLI
AWS Power Tools: Advanced AWS CloudFormation and CLI
 
(DVO301) AWS OpsWorks Under the Hood
(DVO301) AWS OpsWorks Under the Hood(DVO301) AWS OpsWorks Under the Hood
(DVO301) AWS OpsWorks Under the Hood
 
Infrastructure as Code for Beginners
Infrastructure as Code for BeginnersInfrastructure as Code for Beginners
Infrastructure as Code for Beginners
 
Developing and deploying serverless applications (February 2017)
Developing and deploying serverless applications (February 2017)Developing and deploying serverless applications (February 2017)
Developing and deploying serverless applications (February 2017)
 
(APP304) AWS CloudFormation Best Practices | AWS re:Invent 2014
(APP304) AWS CloudFormation Best Practices | AWS re:Invent 2014(APP304) AWS CloudFormation Best Practices | AWS re:Invent 2014
(APP304) AWS CloudFormation Best Practices | AWS re:Invent 2014
 
Account Separation and Mandatory Access Control
Account Separation and Mandatory Access ControlAccount Separation and Mandatory Access Control
Account Separation and Mandatory Access Control
 
Building serverless apps with Node.js
Building serverless apps with Node.jsBuilding serverless apps with Node.js
Building serverless apps with Node.js
 
A 60-minute tour of AWS Compute (November 2016)
A 60-minute tour of AWS Compute (November 2016)A 60-minute tour of AWS Compute (November 2016)
A 60-minute tour of AWS Compute (November 2016)
 
An introduction to serverless architectures (February 2017)
An introduction to serverless architectures (February 2017)An introduction to serverless architectures (February 2017)
An introduction to serverless architectures (February 2017)
 
Building Serverless APIs on AWS
Building Serverless APIs on AWSBuilding Serverless APIs on AWS
Building Serverless APIs on AWS
 
AWS CloudFormation Masterclass
AWS CloudFormation MasterclassAWS CloudFormation Masterclass
AWS CloudFormation Masterclass
 
AWS Lambda in C#
AWS Lambda in C#AWS Lambda in C#
AWS Lambda in C#
 
Aws microservice keynote
Aws microservice keynoteAws microservice keynote
Aws microservice keynote
 
AWS CloudFormation and Puppet at PuppetConf - Jinesh Varia
AWS CloudFormation and Puppet at PuppetConf - Jinesh VariaAWS CloudFormation and Puppet at PuppetConf - Jinesh Varia
AWS CloudFormation and Puppet at PuppetConf - Jinesh Varia
 
AWS for Startups, London - Programming AWS
AWS for Startups, London - Programming AWSAWS for Startups, London - Programming AWS
AWS for Startups, London - Programming AWS
 
DevOps for the Enterprise: Virtual Office Hours
DevOps for the Enterprise: Virtual Office HoursDevOps for the Enterprise: Virtual Office Hours
DevOps for the Enterprise: Virtual Office Hours
 
Infrastructure as Code: Manage your Architecture with Git
Infrastructure as Code: Manage your Architecture with GitInfrastructure as Code: Manage your Architecture with Git
Infrastructure as Code: Manage your Architecture with Git
 

Destacado

신상계초 1강
신상계초 1강신상계초 1강
신상계초 1강봉석 곽
 
레알텃밭학교소개 (Nx power lite)
레알텃밭학교소개 (Nx power lite)레알텃밭학교소개 (Nx power lite)
레알텃밭학교소개 (Nx power lite)봉석 곽
 
대학텃밭모임
대학텃밭모임대학텃밭모임
대학텃밭모임봉석 곽
 
2014 남태령텃밭 by 김성숙선생님
2014 남태령텃밭 by 김성숙선생님2014 남태령텃밭 by 김성숙선생님
2014 남태령텃밭 by 김성숙선생님Sohee Shin
 
[어린이그린리더양성교육 아동용 교재]
[어린이그린리더양성교육 아동용 교재][어린이그린리더양성교육 아동용 교재]
[어린이그린리더양성교육 아동용 교재]진아 장
 
지구를 살리는 일곱가지 물건(2014)
지구를 살리는 일곱가지 물건(2014)지구를 살리는 일곱가지 물건(2014)
지구를 살리는 일곱가지 물건(2014)여성환경연대
 
푸른마을 만들기
푸른마을 만들기푸른마을 만들기
푸른마을 만들기yuntan
 
다정한밥상 워크북 2
다정한밥상 워크북 2다정한밥상 워크북 2
다정한밥상 워크북 2여성환경연대
 
태풍 이후 옥상 텃밭 진단 및 텃밭 관리 방법(2012)
태풍 이후 옥상 텃밭 진단 및 텃밭 관리 방법(2012)태풍 이후 옥상 텃밭 진단 및 텃밭 관리 방법(2012)
태풍 이후 옥상 텃밭 진단 및 텃밭 관리 방법(2012)여성환경연대
 
씨앗들 경작 활동
씨앗들 경작 활동씨앗들 경작 활동
씨앗들 경작 활동봉석 곽
 
생명의숲을 소개합니다!
생명의숲을 소개합니다!생명의숲을 소개합니다!
생명의숲을 소개합니다!Hyuna Leean
 
빙고 소개 프리젠테이션
빙고 소개 프리젠테이션빙고 소개 프리젠테이션
빙고 소개 프리젠테이션Bin Go
 
091031 농촌블로그이야기 V.1강정은
091031 농촌블로그이야기 V.1강정은091031 농촌블로그이야기 V.1강정은
091031 농촌블로그이야기 V.1강정은JUNGEUN KANG
 
초등학교내 체험학습용 스쿨팜 연구(2014)
초등학교내 체험학습용 스쿨팜 연구(2014)초등학교내 체험학습용 스쿨팜 연구(2014)
초등학교내 체험학습용 스쿨팜 연구(2014)여성환경연대
 

Destacado (20)

신상계초 1강
신상계초 1강신상계초 1강
신상계초 1강
 
Sas 9.2 eg migration v1
Sas 9.2 eg migration v1Sas 9.2 eg migration v1
Sas 9.2 eg migration v1
 
레알텃밭학교소개 (Nx power lite)
레알텃밭학교소개 (Nx power lite)레알텃밭학교소개 (Nx power lite)
레알텃밭학교소개 (Nx power lite)
 
대학텃밭모임
대학텃밭모임대학텃밭모임
대학텃밭모임
 
2014 남태령텃밭 by 김성숙선생님
2014 남태령텃밭 by 김성숙선생님2014 남태령텃밭 by 김성숙선생님
2014 남태령텃밭 by 김성숙선생님
 
[어린이그린리더양성교육 아동용 교재]
[어린이그린리더양성교육 아동용 교재][어린이그린리더양성교육 아동용 교재]
[어린이그린리더양성교육 아동용 교재]
 
지구를 살리는 일곱가지 물건(2014)
지구를 살리는 일곱가지 물건(2014)지구를 살리는 일곱가지 물건(2014)
지구를 살리는 일곱가지 물건(2014)
 
푸른마을 만들기
푸른마을 만들기푸른마을 만들기
푸른마을 만들기
 
다정한밥상 워크북 2
다정한밥상 워크북 2다정한밥상 워크북 2
다정한밥상 워크북 2
 
태풍 이후 옥상 텃밭 진단 및 텃밭 관리 방법(2012)
태풍 이후 옥상 텃밭 진단 및 텃밭 관리 방법(2012)태풍 이후 옥상 텃밭 진단 및 텃밭 관리 방법(2012)
태풍 이후 옥상 텃밭 진단 및 텃밭 관리 방법(2012)
 
씨앗들 경작 활동
씨앗들 경작 활동씨앗들 경작 활동
씨앗들 경작 활동
 
생명의숲을 소개합니다!
생명의숲을 소개합니다!생명의숲을 소개합니다!
생명의숲을 소개합니다!
 
빙고 소개 프리젠테이션
빙고 소개 프리젠테이션빙고 소개 프리젠테이션
빙고 소개 프리젠테이션
 
091031 농촌블로그이야기 V.1강정은
091031 농촌블로그이야기 V.1강정은091031 농촌블로그이야기 V.1강정은
091031 농촌블로그이야기 V.1강정은
 
농촌레인부츠
농촌레인부츠농촌레인부츠
농촌레인부츠
 
초등학교내 체험학습용 스쿨팜 연구(2014)
초등학교내 체험학습용 스쿨팜 연구(2014)초등학교내 체험학습용 스쿨팜 연구(2014)
초등학교내 체험학습용 스쿨팜 연구(2014)
 
할머니네 텃밭 아동용 자료집
할머니네 텃밭 아동용 자료집할머니네 텃밭 아동용 자료집
할머니네 텃밭 아동용 자료집
 
농촌기획자 마무리
농촌기획자 마무리농촌기획자 마무리
농촌기획자 마무리
 
할머니네텃밭 _환경정의
할머니네텃밭 _환경정의할머니네텃밭 _환경정의
할머니네텃밭 _환경정의
 
할머니네 텃밭 어른용 자료집
할머니네 텃밭 어른용 자료집할머니네 텃밭 어른용 자료집
할머니네 텃밭 어른용 자료집
 

Similar a Writing JavaScript Applications with the AWS SDK (TLS303) | AWS re:Invent 2013

Diving Into the New AWS SDK for Ruby (TLS305) | AWS re:Invent 2013
Diving Into the New AWS SDK for Ruby (TLS305) | AWS re:Invent 2013Diving Into the New AWS SDK for Ruby (TLS305) | AWS re:Invent 2013
Diving Into the New AWS SDK for Ruby (TLS305) | AWS re:Invent 2013Amazon Web Services
 
Serverless cat detector workshop - cloudyna 2017 (16.12.2017)
Serverless cat detector   workshop - cloudyna 2017 (16.12.2017)Serverless cat detector   workshop - cloudyna 2017 (16.12.2017)
Serverless cat detector workshop - cloudyna 2017 (16.12.2017)Paweł Pikuła
 
(WEB302) Best Practices for Running WordPress on AWS | AWS re:Invent 2014
(WEB302) Best Practices for Running WordPress on AWS | AWS re:Invent 2014(WEB302) Best Practices for Running WordPress on AWS | AWS re:Invent 2014
(WEB302) Best Practices for Running WordPress on AWS | AWS re:Invent 2014Amazon Web Services
 
Developing Java Applications in AWS
Developing Java Applications in AWSDeveloping Java Applications in AWS
Developing Java Applications in AWSNemanja Kostic
 
CloudFork
CloudForkCloudFork
CloudForkESUG
 
Serverless Architectural Patterns & Best Practices
Serverless Architectural Patterns & Best PracticesServerless Architectural Patterns & Best Practices
Serverless Architectural Patterns & Best PracticesDaniel Zivkovic
 
Amazon AWS | What is Amazon AWS | AWS Tutorial | AWS Training | Edureka
Amazon AWS | What is Amazon AWS | AWS Tutorial | AWS Training | EdurekaAmazon AWS | What is Amazon AWS | AWS Tutorial | AWS Training | Edureka
Amazon AWS | What is Amazon AWS | AWS Tutorial | AWS Training | EdurekaEdureka!
 
Born in the Cloud; Build it Like a Startup
Born in the Cloud; Build it Like a StartupBorn in the Cloud; Build it Like a Startup
Born in the Cloud; Build it Like a StartupAmazon Web Services
 
Architecting Cloud Apps
Architecting Cloud AppsArchitecting Cloud Apps
Architecting Cloud Appsjineshvaria
 
Building Scalable Windows and .NET Apps on AWS (TLS302) | AWS re:Invent 2013
Building Scalable Windows and .NET Apps on AWS (TLS302) | AWS re:Invent 2013Building Scalable Windows and .NET Apps on AWS (TLS302) | AWS re:Invent 2013
Building Scalable Windows and .NET Apps on AWS (TLS302) | AWS re:Invent 2013Amazon Web Services
 
Hands On Lab: Introduction to Microsoft SQL Server in AWS - April 2017 AWS On...
Hands On Lab: Introduction to Microsoft SQL Server in AWS - April 2017 AWS On...Hands On Lab: Introduction to Microsoft SQL Server in AWS - April 2017 AWS On...
Hands On Lab: Introduction to Microsoft SQL Server in AWS - April 2017 AWS On...Amazon Web Services
 
High-Throughput Genomics on AWS - LFS309 - re:Invent 2017
High-Throughput Genomics on AWS - LFS309 - re:Invent 2017High-Throughput Genomics on AWS - LFS309 - re:Invent 2017
High-Throughput Genomics on AWS - LFS309 - re:Invent 2017Amazon Web Services
 
LFS309-High-Throughput Genomics on AWS.pdf
LFS309-High-Throughput Genomics on AWS.pdfLFS309-High-Throughput Genomics on AWS.pdf
LFS309-High-Throughput Genomics on AWS.pdfAmazon Web Services
 
Comparison and mapping between various cloud services 2019
Comparison and mapping between various cloud services 2019Comparison and mapping between various cloud services 2019
Comparison and mapping between various cloud services 2019jones4u
 
AWS Lambda Tutorial | Introduction to AWS Lambda | AWS Tutorial | AWS Trainin...
AWS Lambda Tutorial | Introduction to AWS Lambda | AWS Tutorial | AWS Trainin...AWS Lambda Tutorial | Introduction to AWS Lambda | AWS Tutorial | AWS Trainin...
AWS Lambda Tutorial | Introduction to AWS Lambda | AWS Tutorial | AWS Trainin...Edureka!
 
Trivadis TechEvent 2017 Oracle on azure by Michael Schwarzgorn
Trivadis TechEvent 2017 Oracle on azure by Michael SchwarzgornTrivadis TechEvent 2017 Oracle on azure by Michael Schwarzgorn
Trivadis TechEvent 2017 Oracle on azure by Michael SchwarzgornTrivadis
 
What is AWS | AWS Certified Solutions Architect | AWS Tutorial | AWS Training...
What is AWS | AWS Certified Solutions Architect | AWS Tutorial | AWS Training...What is AWS | AWS Certified Solutions Architect | AWS Tutorial | AWS Training...
What is AWS | AWS Certified Solutions Architect | AWS Tutorial | AWS Training...Edureka!
 
AWS and Serverless Computing
AWS and Serverless ComputingAWS and Serverless Computing
AWS and Serverless ComputingRoberto Casadei
 
AWS Lambda with ClaudiaJS
AWS Lambda with ClaudiaJSAWS Lambda with ClaudiaJS
AWS Lambda with ClaudiaJSRiza Fahmi
 

Similar a Writing JavaScript Applications with the AWS SDK (TLS303) | AWS re:Invent 2013 (20)

Diving Into the New AWS SDK for Ruby (TLS305) | AWS re:Invent 2013
Diving Into the New AWS SDK for Ruby (TLS305) | AWS re:Invent 2013Diving Into the New AWS SDK for Ruby (TLS305) | AWS re:Invent 2013
Diving Into the New AWS SDK for Ruby (TLS305) | AWS re:Invent 2013
 
Serverless cat detector workshop - cloudyna 2017 (16.12.2017)
Serverless cat detector   workshop - cloudyna 2017 (16.12.2017)Serverless cat detector   workshop - cloudyna 2017 (16.12.2017)
Serverless cat detector workshop - cloudyna 2017 (16.12.2017)
 
(WEB302) Best Practices for Running WordPress on AWS | AWS re:Invent 2014
(WEB302) Best Practices for Running WordPress on AWS | AWS re:Invent 2014(WEB302) Best Practices for Running WordPress on AWS | AWS re:Invent 2014
(WEB302) Best Practices for Running WordPress on AWS | AWS re:Invent 2014
 
Developing Java Applications in AWS
Developing Java Applications in AWSDeveloping Java Applications in AWS
Developing Java Applications in AWS
 
CloudFork
CloudForkCloudFork
CloudFork
 
Serverless Architectural Patterns & Best Practices
Serverless Architectural Patterns & Best PracticesServerless Architectural Patterns & Best Practices
Serverless Architectural Patterns & Best Practices
 
Amazon AWS | What is Amazon AWS | AWS Tutorial | AWS Training | Edureka
Amazon AWS | What is Amazon AWS | AWS Tutorial | AWS Training | EdurekaAmazon AWS | What is Amazon AWS | AWS Tutorial | AWS Training | Edureka
Amazon AWS | What is Amazon AWS | AWS Tutorial | AWS Training | Edureka
 
Born in the Cloud; Build it Like a Startup
Born in the Cloud; Build it Like a StartupBorn in the Cloud; Build it Like a Startup
Born in the Cloud; Build it Like a Startup
 
AWS User Group December 2016
AWS User Group December 2016AWS User Group December 2016
AWS User Group December 2016
 
Architecting Cloud Apps
Architecting Cloud AppsArchitecting Cloud Apps
Architecting Cloud Apps
 
Building Scalable Windows and .NET Apps on AWS (TLS302) | AWS re:Invent 2013
Building Scalable Windows and .NET Apps on AWS (TLS302) | AWS re:Invent 2013Building Scalable Windows and .NET Apps on AWS (TLS302) | AWS re:Invent 2013
Building Scalable Windows and .NET Apps on AWS (TLS302) | AWS re:Invent 2013
 
Hands On Lab: Introduction to Microsoft SQL Server in AWS - April 2017 AWS On...
Hands On Lab: Introduction to Microsoft SQL Server in AWS - April 2017 AWS On...Hands On Lab: Introduction to Microsoft SQL Server in AWS - April 2017 AWS On...
Hands On Lab: Introduction to Microsoft SQL Server in AWS - April 2017 AWS On...
 
High-Throughput Genomics on AWS - LFS309 - re:Invent 2017
High-Throughput Genomics on AWS - LFS309 - re:Invent 2017High-Throughput Genomics on AWS - LFS309 - re:Invent 2017
High-Throughput Genomics on AWS - LFS309 - re:Invent 2017
 
LFS309-High-Throughput Genomics on AWS.pdf
LFS309-High-Throughput Genomics on AWS.pdfLFS309-High-Throughput Genomics on AWS.pdf
LFS309-High-Throughput Genomics on AWS.pdf
 
Comparison and mapping between various cloud services 2019
Comparison and mapping between various cloud services 2019Comparison and mapping between various cloud services 2019
Comparison and mapping between various cloud services 2019
 
AWS Lambda Tutorial | Introduction to AWS Lambda | AWS Tutorial | AWS Trainin...
AWS Lambda Tutorial | Introduction to AWS Lambda | AWS Tutorial | AWS Trainin...AWS Lambda Tutorial | Introduction to AWS Lambda | AWS Tutorial | AWS Trainin...
AWS Lambda Tutorial | Introduction to AWS Lambda | AWS Tutorial | AWS Trainin...
 
Trivadis TechEvent 2017 Oracle on azure by Michael Schwarzgorn
Trivadis TechEvent 2017 Oracle on azure by Michael SchwarzgornTrivadis TechEvent 2017 Oracle on azure by Michael Schwarzgorn
Trivadis TechEvent 2017 Oracle on azure by Michael Schwarzgorn
 
What is AWS | AWS Certified Solutions Architect | AWS Tutorial | AWS Training...
What is AWS | AWS Certified Solutions Architect | AWS Tutorial | AWS Training...What is AWS | AWS Certified Solutions Architect | AWS Tutorial | AWS Training...
What is AWS | AWS Certified Solutions Architect | AWS Tutorial | AWS Training...
 
AWS and Serverless Computing
AWS and Serverless ComputingAWS and Serverless Computing
AWS and Serverless Computing
 
AWS Lambda with ClaudiaJS
AWS Lambda with ClaudiaJSAWS Lambda with ClaudiaJS
AWS Lambda with ClaudiaJS
 

Más de Amazon Web Services

Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Amazon Web Services
 
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Amazon Web Services
 
Esegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateEsegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateAmazon Web Services
 
Costruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSCostruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSAmazon Web Services
 
Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Amazon Web Services
 
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Amazon Web Services
 
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...Amazon Web Services
 
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsAmazon Web Services
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareAmazon Web Services
 
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSCrea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSAmazon Web Services
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAmazon Web Services
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareAmazon Web Services
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWSAmazon Web Services
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckAmazon Web Services
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without serversAmazon Web Services
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...Amazon Web Services
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceAmazon Web Services
 

Más de Amazon Web Services (20)

Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
 
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
 
Esegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateEsegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS Fargate
 
Costruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSCostruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWS
 
Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot
 
Open banking as a service
Open banking as a serviceOpen banking as a service
Open banking as a service
 
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
 
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
 
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
 
Computer Vision con AWS
Computer Vision con AWSComputer Vision con AWS
Computer Vision con AWS
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatare
 
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSCrea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e web
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWS
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch Deck
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without servers
 
Fundraising Essentials
Fundraising EssentialsFundraising Essentials
Fundraising Essentials
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container Service
 

Último

Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 

Último (20)

Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 

Writing JavaScript Applications with the AWS SDK (TLS303) | AWS re:Invent 2013