SlideShare a Scribd company logo
1 of 58
Download to read offline
© 2015, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Dhruv Thukral, Amazon Web Services Solutions Architect, Gaming
Tara E. Walker, AWS Technical Evangelist, Amazon Web Services
October 2015
GAM 401
Serverless Mobile App and Game Development
Build Your Game with Mobile Services
Before We Start
How Do You Build a Mobile
Game Today?
Authenticate users
Manage users and identity providers
Authorize access
Securely access cloud resources
Synchronize data
Sync user preferences across devices
Store and deliver media
Store DLC and deliver content quickly
Send real time events
Create live dashboards to track user events in real time
Analyze user behavior
Track active users, engagement and stats
Store shared data
Store and query fast NoSQL data across users and devices
Send push notifications
Bring users back to your app by sending messages reliably
Introducing AWS Mobile Services
Amazon Cognito Amazon Mobile Analytics Amazon SNS Mobile Push
Amazon Kinesis
Recorder
Amazon DynamoDB
Mapper
Amazon S3
Transfer Util
Amazon
SQS Client
Amazon SES
Client
Core building
block services
Mobile optimized
connectors
Mobile optimized
services
Your Mobile Game
AWS Mobile SDK for iOS, Android, Xamarin and Unity, API Endpoints, Management Console
Compute Storage Networking Analytics Databases
Integrated SDK
AWS Lambda
Lambda
Functions
λ λ
λ
λ
Authenticate users
Manage users and identity providers
Authorize access
Securely access cloud resources
Synchronize data
Sync user preferences across devices
Store and deliver media
Store DLC and deliver content quickly
Amazon Cognito
Sync
Amazon Cognito
Amazon Cognito
S3 Transfer
Utility
Send real time events
Create Live Dashboards to track user events in real time
Analyze user behavior
Track active users, engagement and stats
Store shared data
Store and query fast NoSQL data across users and devices
Send push notifications
Bring users back to your app by sending messages reliably
Kinesis
Recorder
DynamoDB
Mapper
Amazon
SNS Mobile Push
Amazon
Mobile Analytics
Authenticate users: Amazon Cognito
Amazon Cognito
Simplifies identity and
access management
Securely access all
AWS services from
mobile device
Cross-device and
cross-platform sync
Implement security best
practices
“Your app data is secure, available offline, and kept in sync between devices”
Synchronize user’s data
across devices and
platforms
Manage users as
unique identities across
identity providers
Guest Your own
Auth
Amazon Cognito concepts
Identity pool
IAM roles, trust, and permissions
Identities: authenticated and unauthenticated
Getting started
Create an identity pool
Use SDK to get credentials
Create roles: authenticated and unauthenticated
Getting credentials
Include the following import statements
Initialize the Amazon Cognito credentials provider
Pass the initialized Amazon Cognito credentials provider to the constructor of
the AWS client to be used. This could be the Amazon Cognito Sync client,
the Amazon S3 transfer manager, or any of the other mobile services we will
talk about shortly.
End Users
App with
AWS Mobile
SDK
Access
to AWS
Services
Login OAUTH/OpenID
Access Token
Amazon
Cognito ID,
Temp
Credentials
Access
Token
Pool ID
Role ARNs
Amazon Cognito ID
(Temp Credentials)
DynamoDB
Developer
Amazon Cognito
Identity Broker
S3
Mobile Analytics
Amazon Cognito
Sync Store
AWS
Management
Console
Amazon Cognito security architecture
Amazon Cognito ID
(Temp Credentials)
End Users
Access
to AWS
Services
Get OpenID Token
User name,
password
Amazon
Cognito ID,
Temp
Credentials
OIDC Token
Pool ID
Role ARNs
User Authentication
System
(Running on AWS or not)
OIDC Token
OIDC Token
Developer authenticated identities
S3
Mobile Analytics
Amazon Cognito
Identity Broker AWS
Management
Console
Developer
DynamoDB
Amazon Cognito
Sync Store
Synchronize data across devices : Amazon Cognito (Sync)
Amazon Cognito Sync
User data,
storage,
and sync
Any platform
iOS, Android, FireOS
Store app data, preferences, and state
Save app and device data to the cloud and merge
them after login
Cross-device cross-OS sync
Sync user data and preferences across devices
with one line of code
Work offline
Data always stored in local SQLite DB first;
works seamlessly when intermittent or no
connectivity
k/v data
Identity pool
Integrating Amazon Cognito Sync functionality is simple
Import the Amazon Cognito package
Initialize the Sync client and use the previously created credentials provider
Datasets
Create a dataset or open an existing one
To delete a dataset
Reading and writing to a dataset
Removing keys from a dataset
Store and deliver media assets:
Amazon S3 and Amazon CloudFront
Amazon S3 Connector: Transfer Utility
S3 Connector
• Multipart upload (e.g., user content)
• Fault tolerant download (e.g., assets)
• No back end required
• Automatic retries
• Pause, resume, cancel functions
Integrating the S3 Transfer Utility is simple too!
Instantiate an Amazon S3 client
Instantiate TransferUtility
Performing operations
Upload an object
Download an object
Performing operations
Upload an object
Download an object
Tracking S3 transfer progress
Other operations
Pausing an S3 transfer
Resuming and S3 transfer
Cancelling an S3 transfer
Analyze user behavior: Amazon Mobile Analytics
Amazon Mobile Analytics
Scalable and generous
Free tier
Focus on metrics that matter; usage
reports available within 60 minutes of
receiving data from an app
Fast
Scale to billions of
events per day from
millions of users
Own your data
“Easily collect, visualize and understand your app usage data at scale”
Data collected are not
shared, aggregated, or
reused
Integrating Mobile Analytics is guess what….simple!
Initialize the MobileAnalyticsManager and that’s it….
We saw earlier where we can find our identity pool ID.
You can get the appid by creating a new app in the Mobile Analytics dashboard
Key business metrics
(with one line of code)
1. Monthly Active Users
(MAU)
2. Daily Active Users
(DAU)
3. New Users
4. Daily Sessions
5. Sticky Factor
6. 1-day retention
7. Avg. revenue per DAU
8. Daily paying users
9. Avg. paying DAU
Amazon Mobile Analytics dashboard
Get behavioral insights into app specific
actions that your users take
Reports provide a view of how often custom
events occur; you can add further context
with attributes and metrics, to each custom
event
Track the number of
likes and shares, per
article, in a news app
Understand player
abort rates per
level, in a game
Number of songs
played, per user
session, in a music
app
In-app item popularity
in a shopping app
Track custom events
Custom event tracking using Mobile Analytics
Create an AnalyticsEvent, pass attributes and metrics
Then record the event
Send push notifications: Amazon SNS mobile push
Each platform works differently, and push gets more complex as
you scale to support millions of devices
Cloud app
Platform services Mobile apps
Amazon SNS
Cross-platform
Mobile Push
Internet
Apple APNS
Google GCM
Amazon ADM
Windows WNS and
MPNS
Baidu CP
New features:
Message expiry time
Message attributes
Delivery status
Broadcast
iOS 9 support
Amazon SNS mobile push
Android Phones and Tablets
Apple iPhones and iPads
Kindle Fire Devices
Android Phones and Tablets in China
iOS
Windows Desktop and Windows Phone
Devices
Store shared data: Amazon DynamoDB
Joe Anna Bob
Highscores
Joe 1500
Anna 800
Bob 750
Simplifies access to Amazon
DynamoDB in your app
Map client-side classes to Amazon
DynamoDB tables
Removes the need to transform
objects into tables and vice versa
Amazon DynamoDB Connector: Object Mapper
@DynamoDBTable(tableName = ”Highscores")
public static class HighScore{
private int userid, highScore;
private String name;
@DynamoDBHashKey(attributeName = ”userid")
public int getUserId() {
return userid;
}
public void setUserId(int userid) {
this.userid = userid;
}
@DynamoDBAttribute(attributeName=”name")
public String getName() {
return name;
}……
User ID Name High score
17 Joe 25
23 Anna 67
32 Bob 55
Table: high scores
Amazon DynamoDB mapper example
// Build a highscore object
HighScore highScore = new HighScore();
highScore.setUserId(17);
highScore.setName(”Joe");
highScore.setHighScore(25);
// Save book object to DynamoDB
mapper.save(highScore);
// Update item and save object again
highScore.setHighScore(118);
mapper.save(highScore);
// Load another highScore
HighScore anotherHighScore = mapper.load(HighScore.class,23);
Amazon DynamoDB mapper example
Quiz?
Q. What is the maximum number of datasets per identity in Amazon Cognito?
A. 20
Q. What object is returned by the TransferUtility when calling an upload or
download?
A. TransferObserver
Q. How many events can you store in the free tier for Mobile Analytics?
Q. 100 MM
Tappy Plane Architecture
and Demo
Now over to Tara!!
Tappy Plane architecture
Mobile Client
AWS Unity
SDK
AWS Toolkit for
Visual Studio
Amazon Cognito
Identity
AWS Cloud
DynamoDB
Mobile
Analytics
Amazno
Cognito Sync
Login
AWS Mobile SDKs for gaming
1. AWS Mobile SDK for Android
2. AWS Mobile SDK for iOS
3. AWS Mobile SDK for Unity (developer preview)
Introducing the AWS SDK for Unity
Generally available, May 2015
Services available
 Amazon DynamoDB
 Amazon S3
 Amazon Cognito
 Amazon Mobile Analytics
 Amazon SNS
Other AWS services
Invoke Lambda with SNS and/or S3 events
Build custom plugins for other AWS services using
AWS Mobile SDK for.NET
SDK installation and setup
Download AWS Unity SDK and unzip
 http://aws.amazon.com/mobile/sdk/
Import the desired package(s) into Unity as a custom
package
 CognitoSync package
 DynamoDB package
 S3 package
 MobileAnalytics package
Add the AWSPrefab to scene in Unity
Tappy Plane game
Game showcases
 Amazon Cognito Identity
 Amazon Cognito Sync
 Mobile Analytics
 Amazon S3 Transfer Utility
 DynamoDB Mapper
Want More Game Samples?
 AWS Unity SDK samples available on GitHub
https://github.com/awslabs/aws-sdk-unity-samples
Tappy Plane
AWS Mobile SDK: services setup
Tappy Plane : services setup
Set up Amazon Cognito identity pool
 Create Tappy Plane identity pool
 Retrieve identity pool ID
Set up Mobile Analytics app
 Add Tappy Plane app
 Retrieve app ID
Create Tappy Plane high score table
 Create table
 Add hash key
 Add table attributes
Tappy Plane demo
Setting up AWS services in the console
Tappy Plane demo
Amazon Cognito: reviewing Unity3D code
Adding DynamoDB
Methods to create DynamoDB table
 Using DynamoDB console
 Using code with createTable method
 Using Visual Studio with AWS Toolkit for Visual Studio:
http://aws.amazon.com/net/
 Example:
• Table name: TappyHighScores
• Primary key type: Hash
• Hash attribute name: ScoreID,
• Hash type: Number
Create DynamoDB client
AmazonDynamoDBClient client = new
AmazonDynamoDBClient(RegionEndpoint.USEast1)
Using DynamoDB
Add a high score record
 Create high score object
[DynamoDBTable(”TappyHighScores")]
class HighScore
{ [DynamoDBHashKey] // hash key
public int ScoreID { get; set; }
[DynamoDBProperty]
public string Score { get; set; }
public string UserID {get; set; }
}
 Save high score record to DynamoDB
_context.SaveAsync<HighScore>(myScore,
(AmazonDynamoResult<VoidResponse> result) =>
{ if (result.Exception != null) { this.displayMessage += "Save
failed ; “ +result.Exception.Message; }
High scores
Joe 1500
Anna 800
Bob 750
Adding Amazon Simple Storage Service (S3)
Methods create S3 bucket (set permissions)
 Using Amazon S3 console
 Using code with PutBucket and PutBucketRequest
 Using Visual Studio with AWS Toolkit for Visual Studio:
http://aws.amazon.com/net/
 Example:
Bucket name: tappyplane_bucket
Create an Amazon S3 transfer manager
AmazonS3Client S3Client =
new AmazonS3Client (credentials ,RegionEndpoint.USEast1);
Using Amazon Simple Storage Service (S3)
Download an object
 Get badge picture (bragging rights)
var request = new GetObjectRequest ()
{ BucketName = bucketName,
Key = downloadKey,
};
S3Client.GetObjectAsync (request, GetObjectCallback,null);
Upload an object
 Upload a picture of high score
Stream stream = null;
stream = new FileStream(uploadSrcFilePath, FileMode.Open,
FileAccess.Read, FileShare.Read);
var postRequest = new PostObjectRequest
{ Key = uploadKey, Bucket = bucketName, InputStream = stream };
S3Client.PostObjectAsync (postRequest, PostObjectCallback,null);
AWS resources
AWS mobile blog
• http://mobile.awsblog.com
AWS Mobile Services
• http://aws.amazon.com/mobile/
AWS Mobile SDK
• http://aws.amazon.com/mobile/sdk/
AWS mobile developer guides
• Unity: http://docs.aws.amazon.com/mobile/sdkforunity/developerguide
• iOS: http://docs.aws.amazon.com/mobile/sdkforios/developerguide
• Android:
http://docs.aws.amazon.com/mobile/sdkforandroid/developerguide/We
lcome.html
Thank you!
Serverless Mobile App and Game Development
Build your game with Mobile Services
Tara Walker AWS Technical Evangelist, Amazon Web Services
Dhruv Thukral Amazon Web Services Solutions Architect, Gaming
Remember to complete
your evaluations!
Related Sessions

More Related Content

What's hot

AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...
AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...
AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...Amazon Web Services Korea
 
CJ프레시웨이 All-in 클라우드 전환 사례를 통해서 알아보는 Modernization성공 사례-오동규, 메가존 인프라 모더나이제이션 그...
CJ프레시웨이 All-in 클라우드 전환 사례를 통해서 알아보는 Modernization성공 사례-오동규, 메가존 인프라 모더나이제이션 그...CJ프레시웨이 All-in 클라우드 전환 사례를 통해서 알아보는 Modernization성공 사례-오동규, 메가존 인프라 모더나이제이션 그...
CJ프레시웨이 All-in 클라우드 전환 사례를 통해서 알아보는 Modernization성공 사례-오동규, 메가존 인프라 모더나이제이션 그...Amazon Web Services Korea
 
AWS Presentation-1.ppt
AWS Presentation-1.pptAWS Presentation-1.ppt
AWS Presentation-1.pptusmanEhsan8
 
Amazon EKS - Elastic Container Service for Kubernetes
Amazon EKS - Elastic Container Service for KubernetesAmazon EKS - Elastic Container Service for Kubernetes
Amazon EKS - Elastic Container Service for KubernetesAmazon Web Services
 
(DVO315) Log, Monitor and Analyze your IT with Amazon CloudWatch
(DVO315) Log, Monitor and Analyze your IT with Amazon CloudWatch(DVO315) Log, Monitor and Analyze your IT with Amazon CloudWatch
(DVO315) Log, Monitor and Analyze your IT with Amazon CloudWatchAmazon Web Services
 
Local Testing and Deployment Best Practices for Serverless Applications - AWS...
Local Testing and Deployment Best Practices for Serverless Applications - AWS...Local Testing and Deployment Best Practices for Serverless Applications - AWS...
Local Testing and Deployment Best Practices for Serverless Applications - AWS...Amazon Web Services
 
Amazon ECS/ECR을 활용하여 마이크로서비스 구성하기 - 김기완 (AWS 솔루션즈아키텍트)
Amazon ECS/ECR을 활용하여 마이크로서비스 구성하기 - 김기완 (AWS 솔루션즈아키텍트)Amazon ECS/ECR을 활용하여 마이크로서비스 구성하기 - 김기완 (AWS 솔루션즈아키텍트)
Amazon ECS/ECR을 활용하여 마이크로서비스 구성하기 - 김기완 (AWS 솔루션즈아키텍트)Amazon Web Services Korea
 
Getting Started With Continuous Delivery on AWS - AWS April 2016 Webinar Series
Getting Started With Continuous Delivery on AWS - AWS April 2016 Webinar SeriesGetting Started With Continuous Delivery on AWS - AWS April 2016 Webinar Series
Getting Started With Continuous Delivery on AWS - AWS April 2016 Webinar SeriesAmazon Web Services
 
데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...
데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...
데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...Amazon Web Services Korea
 
클라우드 마이그레이션 성공적인 여정, 그 중요한 시작 "Readiness Assessment (전환 준비 평가)" - 김준범, AWS Mi...
클라우드 마이그레이션 성공적인 여정, 그 중요한 시작 "Readiness Assessment (전환 준비 평가)" - 김준범, AWS Mi...클라우드 마이그레이션 성공적인 여정, 그 중요한 시작 "Readiness Assessment (전환 준비 평가)" - 김준범, AWS Mi...
클라우드 마이그레이션 성공적인 여정, 그 중요한 시작 "Readiness Assessment (전환 준비 평가)" - 김준범, AWS Mi...Amazon Web Services Korea
 
다양한 배포 기법과 AWS에서 구축하는 CI/CD 파이프라인 l 안효빈 솔루션즈 아키텍트
다양한 배포 기법과 AWS에서 구축하는 CI/CD 파이프라인 l 안효빈 솔루션즈 아키텍트다양한 배포 기법과 AWS에서 구축하는 CI/CD 파이프라인 l 안효빈 솔루션즈 아키텍트
다양한 배포 기법과 AWS에서 구축하는 CI/CD 파이프라인 l 안효빈 솔루션즈 아키텍트Amazon Web Services Korea
 
쉽게 알아보는 AWS 클라우드 보안 :: 임기성 & 신용녀 :: AWS Summit Seoul 2016
쉽게 알아보는 AWS 클라우드 보안 :: 임기성 & 신용녀 :: AWS Summit Seoul 2016쉽게 알아보는 AWS 클라우드 보안 :: 임기성 & 신용녀 :: AWS Summit Seoul 2016
쉽게 알아보는 AWS 클라우드 보안 :: 임기성 & 신용녀 :: AWS Summit Seoul 2016Amazon Web Services Korea
 
Amazon Personalize 개인화 추천 모델 만들기::김태수, 솔루션즈 아키텍트, AWS::AWS AIML 스페셜 웨비나
Amazon Personalize 개인화 추천 모델 만들기::김태수, 솔루션즈 아키텍트, AWS::AWS AIML 스페셜 웨비나Amazon Personalize 개인화 추천 모델 만들기::김태수, 솔루션즈 아키텍트, AWS::AWS AIML 스페셜 웨비나
Amazon Personalize 개인화 추천 모델 만들기::김태수, 솔루션즈 아키텍트, AWS::AWS AIML 스페셜 웨비나Amazon Web Services Korea
 
Serverless computing with AWS Lambda
Serverless computing with AWS Lambda Serverless computing with AWS Lambda
Serverless computing with AWS Lambda Apigee | Google Cloud
 

What's hot (20)

AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...
AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...
AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...
 
AWS Cloud trail
AWS Cloud trailAWS Cloud trail
AWS Cloud trail
 
CJ프레시웨이 All-in 클라우드 전환 사례를 통해서 알아보는 Modernization성공 사례-오동규, 메가존 인프라 모더나이제이션 그...
CJ프레시웨이 All-in 클라우드 전환 사례를 통해서 알아보는 Modernization성공 사례-오동규, 메가존 인프라 모더나이제이션 그...CJ프레시웨이 All-in 클라우드 전환 사례를 통해서 알아보는 Modernization성공 사례-오동규, 메가존 인프라 모더나이제이션 그...
CJ프레시웨이 All-in 클라우드 전환 사례를 통해서 알아보는 Modernization성공 사례-오동규, 메가존 인프라 모더나이제이션 그...
 
AWS Presentation-1.ppt
AWS Presentation-1.pptAWS Presentation-1.ppt
AWS Presentation-1.ppt
 
Amazon EKS - Elastic Container Service for Kubernetes
Amazon EKS - Elastic Container Service for KubernetesAmazon EKS - Elastic Container Service for Kubernetes
Amazon EKS - Elastic Container Service for Kubernetes
 
AWS CloudFormation Masterclass
AWS CloudFormation MasterclassAWS CloudFormation Masterclass
AWS CloudFormation Masterclass
 
(DVO315) Log, Monitor and Analyze your IT with Amazon CloudWatch
(DVO315) Log, Monitor and Analyze your IT with Amazon CloudWatch(DVO315) Log, Monitor and Analyze your IT with Amazon CloudWatch
(DVO315) Log, Monitor and Analyze your IT with Amazon CloudWatch
 
Local Testing and Deployment Best Practices for Serverless Applications - AWS...
Local Testing and Deployment Best Practices for Serverless Applications - AWS...Local Testing and Deployment Best Practices for Serverless Applications - AWS...
Local Testing and Deployment Best Practices for Serverless Applications - AWS...
 
Amazon ECS/ECR을 활용하여 마이크로서비스 구성하기 - 김기완 (AWS 솔루션즈아키텍트)
Amazon ECS/ECR을 활용하여 마이크로서비스 구성하기 - 김기완 (AWS 솔루션즈아키텍트)Amazon ECS/ECR을 활용하여 마이크로서비스 구성하기 - 김기완 (AWS 솔루션즈아키텍트)
Amazon ECS/ECR을 활용하여 마이크로서비스 구성하기 - 김기완 (AWS 솔루션즈아키텍트)
 
Getting Started With Continuous Delivery on AWS - AWS April 2016 Webinar Series
Getting Started With Continuous Delivery on AWS - AWS April 2016 Webinar SeriesGetting Started With Continuous Delivery on AWS - AWS April 2016 Webinar Series
Getting Started With Continuous Delivery on AWS - AWS April 2016 Webinar Series
 
AWS Lambda
AWS LambdaAWS Lambda
AWS Lambda
 
데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...
데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...
데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...
 
클라우드 마이그레이션 성공적인 여정, 그 중요한 시작 "Readiness Assessment (전환 준비 평가)" - 김준범, AWS Mi...
클라우드 마이그레이션 성공적인 여정, 그 중요한 시작 "Readiness Assessment (전환 준비 평가)" - 김준범, AWS Mi...클라우드 마이그레이션 성공적인 여정, 그 중요한 시작 "Readiness Assessment (전환 준비 평가)" - 김준범, AWS Mi...
클라우드 마이그레이션 성공적인 여정, 그 중요한 시작 "Readiness Assessment (전환 준비 평가)" - 김준범, AWS Mi...
 
다양한 배포 기법과 AWS에서 구축하는 CI/CD 파이프라인 l 안효빈 솔루션즈 아키텍트
다양한 배포 기법과 AWS에서 구축하는 CI/CD 파이프라인 l 안효빈 솔루션즈 아키텍트다양한 배포 기법과 AWS에서 구축하는 CI/CD 파이프라인 l 안효빈 솔루션즈 아키텍트
다양한 배포 기법과 AWS에서 구축하는 CI/CD 파이프라인 l 안효빈 솔루션즈 아키텍트
 
쉽게 알아보는 AWS 클라우드 보안 :: 임기성 & 신용녀 :: AWS Summit Seoul 2016
쉽게 알아보는 AWS 클라우드 보안 :: 임기성 & 신용녀 :: AWS Summit Seoul 2016쉽게 알아보는 AWS 클라우드 보안 :: 임기성 & 신용녀 :: AWS Summit Seoul 2016
쉽게 알아보는 AWS 클라우드 보안 :: 임기성 & 신용녀 :: AWS Summit Seoul 2016
 
Azure dev ops
Azure dev opsAzure dev ops
Azure dev ops
 
Amazon Personalize 개인화 추천 모델 만들기::김태수, 솔루션즈 아키텍트, AWS::AWS AIML 스페셜 웨비나
Amazon Personalize 개인화 추천 모델 만들기::김태수, 솔루션즈 아키텍트, AWS::AWS AIML 스페셜 웨비나Amazon Personalize 개인화 추천 모델 만들기::김태수, 솔루션즈 아키텍트, AWS::AWS AIML 스페셜 웨비나
Amazon Personalize 개인화 추천 모델 만들기::김태수, 솔루션즈 아키텍트, AWS::AWS AIML 스페셜 웨비나
 
Deep dive into AWS fargate
Deep dive into AWS fargateDeep dive into AWS fargate
Deep dive into AWS fargate
 
Serverless computing with AWS Lambda
Serverless computing with AWS Lambda Serverless computing with AWS Lambda
Serverless computing with AWS Lambda
 
Azure DevOps
Azure DevOpsAzure DevOps
Azure DevOps
 

Similar to (GAM401) Build a Serverless Mobile Game w/ Cognito, Lambda & DynamoDB

(MBL310) Workshop: Build iOS Apps Using AWS Mobile Services | AWS re:Invent 2014
(MBL310) Workshop: Build iOS Apps Using AWS Mobile Services | AWS re:Invent 2014(MBL310) Workshop: Build iOS Apps Using AWS Mobile Services | AWS re:Invent 2014
(MBL310) Workshop: Build iOS Apps Using AWS Mobile Services | AWS re:Invent 2014Amazon Web Services
 
Build Your Mobile App Faster with AWS Mobile Services
Build Your Mobile App Faster with AWS Mobile ServicesBuild Your Mobile App Faster with AWS Mobile Services
Build Your Mobile App Faster with AWS Mobile ServicesAmazon Web Services
 
AWS April Webinar Series - Easily Build and Scale Mobile Apps with AWS Mobile...
AWS April Webinar Series - Easily Build and Scale Mobile Apps with AWS Mobile...AWS April Webinar Series - Easily Build and Scale Mobile Apps with AWS Mobile...
AWS April Webinar Series - Easily Build and Scale Mobile Apps with AWS Mobile...Amazon Web Services
 
Building Mobile Apps on AWS at Websummit Diublin
Building Mobile Apps on AWS at Websummit DiublinBuilding Mobile Apps on AWS at Websummit Diublin
Building Mobile Apps on AWS at Websummit DiublinAmazon Web Services
 
Building Cloud-Powered Mobile Apps
Building Cloud-Powered Mobile AppsBuilding Cloud-Powered Mobile Apps
Building Cloud-Powered Mobile AppsDanilo Poccia
 
Journey Through the Cloud - Mobile & Social Apps
Journey Through the Cloud - Mobile & Social AppsJourney Through the Cloud - Mobile & Social Apps
Journey Through the Cloud - Mobile & Social AppsAmazon Web Services
 
Build Your Mobile App Faster with AWS Mobile Services
Build Your Mobile App Faster with AWS Mobile ServicesBuild Your Mobile App Faster with AWS Mobile Services
Build Your Mobile App Faster with AWS Mobile ServicesAmazon Web Services
 
Build Your Mobile App Faster with AWS Mobile Services
Build Your Mobile App Faster with AWS Mobile ServicesBuild Your Mobile App Faster with AWS Mobile Services
Build Your Mobile App Faster with AWS Mobile ServicesAmazon Web Services
 
Build high performing mobile apps, faster with AWS
Build high performing mobile apps, faster with AWSBuild high performing mobile apps, faster with AWS
Build high performing mobile apps, faster with AWSShiva Narayanaswamy
 
Build Your Mobile App Faster with AWS Mobile Services (Part 1 - AWS)
Build Your Mobile App Faster with AWS Mobile Services (Part 1 - AWS)Build Your Mobile App Faster with AWS Mobile Services (Part 1 - AWS)
Build Your Mobile App Faster with AWS Mobile Services (Part 1 - AWS)Amazon Web Services
 
Build and Deploy Your Mobile Games
Build and Deploy Your Mobile Games Build and Deploy Your Mobile Games
Build and Deploy Your Mobile Games Amazon Web Services
 
Build Your Mobile App Faster with AWS Mobile Services
Build Your Mobile App Faster with AWS Mobile ServicesBuild Your Mobile App Faster with AWS Mobile Services
Build Your Mobile App Faster with AWS Mobile ServicesAmazon Web Services
 
AWS Webinar - 201 Developing mobile apps with AWS
AWS Webinar - 201 Developing mobile apps with AWSAWS Webinar - 201 Developing mobile apps with AWS
AWS Webinar - 201 Developing mobile apps with AWSAmazon Web Services
 
Build Your Mobile App with AWS Mobile Services
Build Your Mobile App with AWS Mobile ServicesBuild Your Mobile App with AWS Mobile Services
Build Your Mobile App with AWS Mobile ServicesAmazon Web Services
 
AWS Cloud Kata 2014 | Jakarta - 2-2 Mobile
AWS Cloud Kata 2014 | Jakarta - 2-2 MobileAWS Cloud Kata 2014 | Jakarta - 2-2 Mobile
AWS Cloud Kata 2014 | Jakarta - 2-2 MobileAmazon Web Services
 
(SPOT205) State of the Union: AWS Mobile Services and New World of Connected ...
(SPOT205) State of the Union: AWS Mobile Services and New World of Connected ...(SPOT205) State of the Union: AWS Mobile Services and New World of Connected ...
(SPOT205) State of the Union: AWS Mobile Services and New World of Connected ...Amazon Web Services
 
Build Mobile Apps using AWS SDKs and AWS Mobile Hub
Build Mobile Apps using AWS SDKs and AWS Mobile HubBuild Mobile Apps using AWS SDKs and AWS Mobile Hub
Build Mobile Apps using AWS SDKs and AWS Mobile HubAmazon Web Services
 

Similar to (GAM401) Build a Serverless Mobile Game w/ Cognito, Lambda & DynamoDB (20)

(MBL310) Workshop: Build iOS Apps Using AWS Mobile Services | AWS re:Invent 2014
(MBL310) Workshop: Build iOS Apps Using AWS Mobile Services | AWS re:Invent 2014(MBL310) Workshop: Build iOS Apps Using AWS Mobile Services | AWS re:Invent 2014
(MBL310) Workshop: Build iOS Apps Using AWS Mobile Services | AWS re:Invent 2014
 
Building mobile apps on AWS
Building mobile apps on AWSBuilding mobile apps on AWS
Building mobile apps on AWS
 
Building mobile apps on aws
Building mobile apps on awsBuilding mobile apps on aws
Building mobile apps on aws
 
Build Your Mobile App Faster with AWS Mobile Services
Build Your Mobile App Faster with AWS Mobile ServicesBuild Your Mobile App Faster with AWS Mobile Services
Build Your Mobile App Faster with AWS Mobile Services
 
AWS April Webinar Series - Easily Build and Scale Mobile Apps with AWS Mobile...
AWS April Webinar Series - Easily Build and Scale Mobile Apps with AWS Mobile...AWS April Webinar Series - Easily Build and Scale Mobile Apps with AWS Mobile...
AWS April Webinar Series - Easily Build and Scale Mobile Apps with AWS Mobile...
 
Building Mobile Apps on AWS at Websummit Diublin
Building Mobile Apps on AWS at Websummit DiublinBuilding Mobile Apps on AWS at Websummit Diublin
Building Mobile Apps on AWS at Websummit Diublin
 
Mobile on AWS
Mobile on AWSMobile on AWS
Mobile on AWS
 
Building Cloud-Powered Mobile Apps
Building Cloud-Powered Mobile AppsBuilding Cloud-Powered Mobile Apps
Building Cloud-Powered Mobile Apps
 
Journey Through the Cloud - Mobile & Social Apps
Journey Through the Cloud - Mobile & Social AppsJourney Through the Cloud - Mobile & Social Apps
Journey Through the Cloud - Mobile & Social Apps
 
Build Your Mobile App Faster with AWS Mobile Services
Build Your Mobile App Faster with AWS Mobile ServicesBuild Your Mobile App Faster with AWS Mobile Services
Build Your Mobile App Faster with AWS Mobile Services
 
Build Your Mobile App Faster with AWS Mobile Services
Build Your Mobile App Faster with AWS Mobile ServicesBuild Your Mobile App Faster with AWS Mobile Services
Build Your Mobile App Faster with AWS Mobile Services
 
Build high performing mobile apps, faster with AWS
Build high performing mobile apps, faster with AWSBuild high performing mobile apps, faster with AWS
Build high performing mobile apps, faster with AWS
 
Build Your Mobile App Faster with AWS Mobile Services (Part 1 - AWS)
Build Your Mobile App Faster with AWS Mobile Services (Part 1 - AWS)Build Your Mobile App Faster with AWS Mobile Services (Part 1 - AWS)
Build Your Mobile App Faster with AWS Mobile Services (Part 1 - AWS)
 
Build and Deploy Your Mobile Games
Build and Deploy Your Mobile Games Build and Deploy Your Mobile Games
Build and Deploy Your Mobile Games
 
Build Your Mobile App Faster with AWS Mobile Services
Build Your Mobile App Faster with AWS Mobile ServicesBuild Your Mobile App Faster with AWS Mobile Services
Build Your Mobile App Faster with AWS Mobile Services
 
AWS Webinar - 201 Developing mobile apps with AWS
AWS Webinar - 201 Developing mobile apps with AWSAWS Webinar - 201 Developing mobile apps with AWS
AWS Webinar - 201 Developing mobile apps with AWS
 
Build Your Mobile App with AWS Mobile Services
Build Your Mobile App with AWS Mobile ServicesBuild Your Mobile App with AWS Mobile Services
Build Your Mobile App with AWS Mobile Services
 
AWS Cloud Kata 2014 | Jakarta - 2-2 Mobile
AWS Cloud Kata 2014 | Jakarta - 2-2 MobileAWS Cloud Kata 2014 | Jakarta - 2-2 Mobile
AWS Cloud Kata 2014 | Jakarta - 2-2 Mobile
 
(SPOT205) State of the Union: AWS Mobile Services and New World of Connected ...
(SPOT205) State of the Union: AWS Mobile Services and New World of Connected ...(SPOT205) State of the Union: AWS Mobile Services and New World of Connected ...
(SPOT205) State of the Union: AWS Mobile Services and New World of Connected ...
 
Build Mobile Apps using AWS SDKs and AWS Mobile Hub
Build Mobile Apps using AWS SDKs and AWS Mobile HubBuild Mobile Apps using AWS SDKs and AWS Mobile Hub
Build Mobile Apps using AWS SDKs and AWS Mobile Hub
 

More from 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
 

More from 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
 

Recently uploaded

Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfOverkill Security
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKJago de Vreede
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024The Digital Insurer
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024The Digital Insurer
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 

Recently uploaded (20)

Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdf
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 

(GAM401) Build a Serverless Mobile Game w/ Cognito, Lambda & DynamoDB

  • 1. © 2015, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Dhruv Thukral, Amazon Web Services Solutions Architect, Gaming Tara E. Walker, AWS Technical Evangelist, Amazon Web Services October 2015 GAM 401 Serverless Mobile App and Game Development Build Your Game with Mobile Services
  • 3. How Do You Build a Mobile Game Today?
  • 4. Authenticate users Manage users and identity providers Authorize access Securely access cloud resources Synchronize data Sync user preferences across devices Store and deliver media Store DLC and deliver content quickly
  • 5. Send real time events Create live dashboards to track user events in real time Analyze user behavior Track active users, engagement and stats Store shared data Store and query fast NoSQL data across users and devices Send push notifications Bring users back to your app by sending messages reliably
  • 6. Introducing AWS Mobile Services Amazon Cognito Amazon Mobile Analytics Amazon SNS Mobile Push Amazon Kinesis Recorder Amazon DynamoDB Mapper Amazon S3 Transfer Util Amazon SQS Client Amazon SES Client Core building block services Mobile optimized connectors Mobile optimized services Your Mobile Game AWS Mobile SDK for iOS, Android, Xamarin and Unity, API Endpoints, Management Console Compute Storage Networking Analytics Databases Integrated SDK AWS Lambda Lambda Functions λ λ λ λ
  • 7. Authenticate users Manage users and identity providers Authorize access Securely access cloud resources Synchronize data Sync user preferences across devices Store and deliver media Store DLC and deliver content quickly Amazon Cognito Sync Amazon Cognito Amazon Cognito S3 Transfer Utility
  • 8. Send real time events Create Live Dashboards to track user events in real time Analyze user behavior Track active users, engagement and stats Store shared data Store and query fast NoSQL data across users and devices Send push notifications Bring users back to your app by sending messages reliably Kinesis Recorder DynamoDB Mapper Amazon SNS Mobile Push Amazon Mobile Analytics
  • 10. Amazon Cognito Simplifies identity and access management Securely access all AWS services from mobile device Cross-device and cross-platform sync Implement security best practices “Your app data is secure, available offline, and kept in sync between devices” Synchronize user’s data across devices and platforms Manage users as unique identities across identity providers Guest Your own Auth
  • 11. Amazon Cognito concepts Identity pool IAM roles, trust, and permissions Identities: authenticated and unauthenticated
  • 12. Getting started Create an identity pool Use SDK to get credentials Create roles: authenticated and unauthenticated
  • 13. Getting credentials Include the following import statements Initialize the Amazon Cognito credentials provider Pass the initialized Amazon Cognito credentials provider to the constructor of the AWS client to be used. This could be the Amazon Cognito Sync client, the Amazon S3 transfer manager, or any of the other mobile services we will talk about shortly.
  • 14. End Users App with AWS Mobile SDK Access to AWS Services Login OAUTH/OpenID Access Token Amazon Cognito ID, Temp Credentials Access Token Pool ID Role ARNs Amazon Cognito ID (Temp Credentials) DynamoDB Developer Amazon Cognito Identity Broker S3 Mobile Analytics Amazon Cognito Sync Store AWS Management Console Amazon Cognito security architecture
  • 15. Amazon Cognito ID (Temp Credentials) End Users Access to AWS Services Get OpenID Token User name, password Amazon Cognito ID, Temp Credentials OIDC Token Pool ID Role ARNs User Authentication System (Running on AWS or not) OIDC Token OIDC Token Developer authenticated identities S3 Mobile Analytics Amazon Cognito Identity Broker AWS Management Console Developer DynamoDB Amazon Cognito Sync Store
  • 16. Synchronize data across devices : Amazon Cognito (Sync)
  • 17. Amazon Cognito Sync User data, storage, and sync Any platform iOS, Android, FireOS Store app data, preferences, and state Save app and device data to the cloud and merge them after login Cross-device cross-OS sync Sync user data and preferences across devices with one line of code Work offline Data always stored in local SQLite DB first; works seamlessly when intermittent or no connectivity k/v data Identity pool
  • 18. Integrating Amazon Cognito Sync functionality is simple Import the Amazon Cognito package Initialize the Sync client and use the previously created credentials provider
  • 19. Datasets Create a dataset or open an existing one To delete a dataset Reading and writing to a dataset Removing keys from a dataset
  • 20. Store and deliver media assets: Amazon S3 and Amazon CloudFront
  • 21. Amazon S3 Connector: Transfer Utility S3 Connector • Multipart upload (e.g., user content) • Fault tolerant download (e.g., assets) • No back end required • Automatic retries • Pause, resume, cancel functions
  • 22. Integrating the S3 Transfer Utility is simple too! Instantiate an Amazon S3 client Instantiate TransferUtility
  • 23. Performing operations Upload an object Download an object
  • 24. Performing operations Upload an object Download an object
  • 26. Other operations Pausing an S3 transfer Resuming and S3 transfer Cancelling an S3 transfer
  • 27. Analyze user behavior: Amazon Mobile Analytics
  • 28. Amazon Mobile Analytics Scalable and generous Free tier Focus on metrics that matter; usage reports available within 60 minutes of receiving data from an app Fast Scale to billions of events per day from millions of users Own your data “Easily collect, visualize and understand your app usage data at scale” Data collected are not shared, aggregated, or reused
  • 29. Integrating Mobile Analytics is guess what….simple! Initialize the MobileAnalyticsManager and that’s it…. We saw earlier where we can find our identity pool ID. You can get the appid by creating a new app in the Mobile Analytics dashboard
  • 30. Key business metrics (with one line of code) 1. Monthly Active Users (MAU) 2. Daily Active Users (DAU) 3. New Users 4. Daily Sessions 5. Sticky Factor 6. 1-day retention 7. Avg. revenue per DAU 8. Daily paying users 9. Avg. paying DAU Amazon Mobile Analytics dashboard
  • 31. Get behavioral insights into app specific actions that your users take Reports provide a view of how often custom events occur; you can add further context with attributes and metrics, to each custom event Track the number of likes and shares, per article, in a news app Understand player abort rates per level, in a game Number of songs played, per user session, in a music app In-app item popularity in a shopping app Track custom events
  • 32. Custom event tracking using Mobile Analytics Create an AnalyticsEvent, pass attributes and metrics Then record the event
  • 33. Send push notifications: Amazon SNS mobile push
  • 34. Each platform works differently, and push gets more complex as you scale to support millions of devices Cloud app Platform services Mobile apps
  • 35. Amazon SNS Cross-platform Mobile Push Internet Apple APNS Google GCM Amazon ADM Windows WNS and MPNS Baidu CP New features: Message expiry time Message attributes Delivery status Broadcast iOS 9 support Amazon SNS mobile push Android Phones and Tablets Apple iPhones and iPads Kindle Fire Devices Android Phones and Tablets in China iOS Windows Desktop and Windows Phone Devices
  • 36. Store shared data: Amazon DynamoDB
  • 37. Joe Anna Bob Highscores Joe 1500 Anna 800 Bob 750 Simplifies access to Amazon DynamoDB in your app Map client-side classes to Amazon DynamoDB tables Removes the need to transform objects into tables and vice versa Amazon DynamoDB Connector: Object Mapper
  • 38. @DynamoDBTable(tableName = ”Highscores") public static class HighScore{ private int userid, highScore; private String name; @DynamoDBHashKey(attributeName = ”userid") public int getUserId() { return userid; } public void setUserId(int userid) { this.userid = userid; } @DynamoDBAttribute(attributeName=”name") public String getName() { return name; }…… User ID Name High score 17 Joe 25 23 Anna 67 32 Bob 55 Table: high scores Amazon DynamoDB mapper example
  • 39. // Build a highscore object HighScore highScore = new HighScore(); highScore.setUserId(17); highScore.setName(”Joe"); highScore.setHighScore(25); // Save book object to DynamoDB mapper.save(highScore); // Update item and save object again highScore.setHighScore(118); mapper.save(highScore); // Load another highScore HighScore anotherHighScore = mapper.load(HighScore.class,23); Amazon DynamoDB mapper example
  • 40. Quiz? Q. What is the maximum number of datasets per identity in Amazon Cognito? A. 20 Q. What object is returned by the TransferUtility when calling an upload or download? A. TransferObserver Q. How many events can you store in the free tier for Mobile Analytics? Q. 100 MM
  • 41. Tappy Plane Architecture and Demo Now over to Tara!!
  • 42. Tappy Plane architecture Mobile Client AWS Unity SDK AWS Toolkit for Visual Studio Amazon Cognito Identity AWS Cloud DynamoDB Mobile Analytics Amazno Cognito Sync Login
  • 43. AWS Mobile SDKs for gaming 1. AWS Mobile SDK for Android 2. AWS Mobile SDK for iOS 3. AWS Mobile SDK for Unity (developer preview)
  • 44. Introducing the AWS SDK for Unity Generally available, May 2015 Services available  Amazon DynamoDB  Amazon S3  Amazon Cognito  Amazon Mobile Analytics  Amazon SNS Other AWS services Invoke Lambda with SNS and/or S3 events Build custom plugins for other AWS services using AWS Mobile SDK for.NET
  • 45. SDK installation and setup Download AWS Unity SDK and unzip  http://aws.amazon.com/mobile/sdk/ Import the desired package(s) into Unity as a custom package  CognitoSync package  DynamoDB package  S3 package  MobileAnalytics package Add the AWSPrefab to scene in Unity
  • 46. Tappy Plane game Game showcases  Amazon Cognito Identity  Amazon Cognito Sync  Mobile Analytics  Amazon S3 Transfer Utility  DynamoDB Mapper Want More Game Samples?  AWS Unity SDK samples available on GitHub https://github.com/awslabs/aws-sdk-unity-samples
  • 47. Tappy Plane AWS Mobile SDK: services setup
  • 48. Tappy Plane : services setup Set up Amazon Cognito identity pool  Create Tappy Plane identity pool  Retrieve identity pool ID Set up Mobile Analytics app  Add Tappy Plane app  Retrieve app ID Create Tappy Plane high score table  Create table  Add hash key  Add table attributes
  • 49. Tappy Plane demo Setting up AWS services in the console
  • 50. Tappy Plane demo Amazon Cognito: reviewing Unity3D code
  • 51. Adding DynamoDB Methods to create DynamoDB table  Using DynamoDB console  Using code with createTable method  Using Visual Studio with AWS Toolkit for Visual Studio: http://aws.amazon.com/net/  Example: • Table name: TappyHighScores • Primary key type: Hash • Hash attribute name: ScoreID, • Hash type: Number Create DynamoDB client AmazonDynamoDBClient client = new AmazonDynamoDBClient(RegionEndpoint.USEast1)
  • 52. Using DynamoDB Add a high score record  Create high score object [DynamoDBTable(”TappyHighScores")] class HighScore { [DynamoDBHashKey] // hash key public int ScoreID { get; set; } [DynamoDBProperty] public string Score { get; set; } public string UserID {get; set; } }  Save high score record to DynamoDB _context.SaveAsync<HighScore>(myScore, (AmazonDynamoResult<VoidResponse> result) => { if (result.Exception != null) { this.displayMessage += "Save failed ; “ +result.Exception.Message; } High scores Joe 1500 Anna 800 Bob 750
  • 53. Adding Amazon Simple Storage Service (S3) Methods create S3 bucket (set permissions)  Using Amazon S3 console  Using code with PutBucket and PutBucketRequest  Using Visual Studio with AWS Toolkit for Visual Studio: http://aws.amazon.com/net/  Example: Bucket name: tappyplane_bucket Create an Amazon S3 transfer manager AmazonS3Client S3Client = new AmazonS3Client (credentials ,RegionEndpoint.USEast1);
  • 54. Using Amazon Simple Storage Service (S3) Download an object  Get badge picture (bragging rights) var request = new GetObjectRequest () { BucketName = bucketName, Key = downloadKey, }; S3Client.GetObjectAsync (request, GetObjectCallback,null); Upload an object  Upload a picture of high score Stream stream = null; stream = new FileStream(uploadSrcFilePath, FileMode.Open, FileAccess.Read, FileShare.Read); var postRequest = new PostObjectRequest { Key = uploadKey, Bucket = bucketName, InputStream = stream }; S3Client.PostObjectAsync (postRequest, PostObjectCallback,null);
  • 55. AWS resources AWS mobile blog • http://mobile.awsblog.com AWS Mobile Services • http://aws.amazon.com/mobile/ AWS Mobile SDK • http://aws.amazon.com/mobile/sdk/ AWS mobile developer guides • Unity: http://docs.aws.amazon.com/mobile/sdkforunity/developerguide • iOS: http://docs.aws.amazon.com/mobile/sdkforios/developerguide • Android: http://docs.aws.amazon.com/mobile/sdkforandroid/developerguide/We lcome.html
  • 56. Thank you! Serverless Mobile App and Game Development Build your game with Mobile Services Tara Walker AWS Technical Evangelist, Amazon Web Services Dhruv Thukral Amazon Web Services Solutions Architect, Gaming