SlideShare a Scribd company logo
CTO Night & Days 2015 Winter - AWS Mobile Development
• 
⎼ 
• 
• 
• 
"  
"  
"  
"  
"  
"  
"  
"  
OS
Apple iPhone, iPad iOS Xcode Swift, Objective-C
Google Android Android OS Android Studio Java
Amazon Kindle Fire Fire OS
https://developer.apple.com/jp/xcode/downloads/
https://developer.android.com/sdk/index.html
"  
"  
"  
"  
Java
PHP
etc.
Java
PHP
etc.
ü 
ü 
ü 
ü 
ü 
CTO Night & Days 2015 Winter - AWS Mobile Development
Java
PHP
etc.
Identity
Management
Data
Pipelines
Hadoop
Real-time
Streaming Data
DevOps
App
Streaming
Workflow
CDN(VMs, Auto-scaling
& Load Balancing)
(Relational,
NoSQL, Caching)
(VPC, DX, DNS)
(Object, Block
and Archival)
Points of
Presence
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
• 
• 
• 
• 
CTO Night & Days 2015 Winter - AWS Mobile Development
"  
"  
"  
"  
Guest
S3
 DynamoDB
 Kinesis
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
S3
DynamoDB
Get Delete Put
{!
"Effect":"Allow",!
"Action":["s3:*"],!
"Resource":"*"!
}!
!
{!
"Effect": ”Deny",!
"Action": ["dynamodb:*"],!
"Resource": "*"!
}!
!
{!
"Effect": "Allow",!
"Action": [”kinesis:*"],!
"Resource": "*"!
}!
Allow
Actions:
All S3, Kinesis
Operations
Resource:
All resources within
these services
Deny
Actions:
All DDB Operations
Resource:
All resources
{!
"Effect":"Allow",!
"Action":["s3:PutObject","s3:GetObject","s3:DeleteObject",!
!"s3:ListMultipartUploadParts","s3:AbortMultipartUpload"],!
"Resource":"arn:aws:s3:::BUCKET_NAME/*"!
} !
{!
"Effect":"Allow",!
"Action":["s3:ListBucket","s3:ListBucketMultipartUploads"],!
"Resource":"arn:aws:s3:::BUCKET_NAME"!
}!
{!
"Effect": "Allow",!
"Action": ["dynamodb:GetItem", "dynamodb:Query", "dynamodb:PutItem"],!
"Resource" : [ "arn:aws:dynamodb:REGION:123456789:table/TABLE_NAME", !
! "arn:aws:dynamodb:REGION:123456789:table/TABLE_NAME/!
! !index/INDEX_NAME" ]!
}!
!
Allow
Actions:
Certain operations
Resource:
One bucket, table ..
{!
"Effect":"Allow”,!
"Action” ["s3:PutObject","s3:GetObject","s3:DeleteObject”,!
”s3:ListMultipartUploadParts","s3:AbortMultipartUpload"],!
"Resource":"arn:aws:s3:::BUCKET_NAME/Bob/*"!
} !
{!
"Effect":"Allow",!
"Action":"s3:ListBucket",!
"Resource":"arn:aws:s3:::BUCKET_NAME",!
"Condition":{"StringLike":{"s3:prefix":”Bob/"}}!
}!
{!
"Effect":"Allow",!
"Action":["s3:ListBucketMultipartUploads"],!
"Resource":"arn:aws:s3:::BUCKET_NAME"!
}!
Allow
Actions:
Certain operations
Resource:
Within a bucket with
specific prefix (user)
Allow
Actions:
All sync operations
Resource:
Only to that identity
{!
"Effect": "Allow”,!
"Action": ["s3:GetObject”,"s3:PutObject”],!
"Resource": ["arn:aws:s3:::!
!myBucket/amazon/snakegame/!
!${cognito-identity.amazonaws.com:sub}"]!
}!
{!
"Effect":"Allow",!
"Action":"cognito-sync:*", !
"Resource":["arn:aws:cognito-sync:us-east-1:
!123456789012:identitypool/!
!${cognito-identity.amazonaws.com:aud}/identity/!
!${cognito-identity.amazonaws.com:sub}/*"] !
}!
Allow
Actions:
S3 Get/Put operations
Resource:
Only to a specific part
of bucket to that identity
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
{!
"identityPoolId" : "Pool Id”!
"identityId" : "Identity Id ”!
"dataSetName" : "Dataset Name”!
"operation" : "(replace|remove)”!
"kinesisSyncRecords" : [!
{!
"key" : "Key",!
"value" : "Value",!
"syncCount" : 1,!
"lastModifiedDate" : 1424801824343,!
"deviceLastModifiedDate" : 1424801824343,!
"op": "(replace|remove)" }, ...!
],!
"lastModifiedDate": 1424801824343,!
"kinesisSyncRecordsURL": "S3Url",!
"payloadType" : "(S3Url|Inline)",!
"syncCount" : 1 !
}!
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
Joe Anna Bob
High Scores
Joe 1500
Anna 800
Bob 750
• 
• 
CTO Night & Days 2015 Winter - AWS Mobile Development
@DynamoDBTable(tableName = "Books")!
public static class Book {!
private String isbn;!
private String title;!
…!
@DynamoDBHashKey(attributeName = “isbn")!
public String getIsbn() {!
return isbn;!
}!
!
@DynamoDBAttribute(attributeName="title")!
public String getTitle() {!
return title;!
}!
…!
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
Joe Anna Bob
• 
• 
• 
• 
• 
CTO Night & Days 2015 Winter - AWS Mobile Development
Download download = !
transferManager.download(“MyBucket”, key, file);!
Upload upload =!
transferManager.upload(“MyBucket”, key, file);!
while (!upload.isDone()){!
// !
}!
TransferManager transferManager = !
new TransferManager(cognitoProvider);!
transferManager.resumeUpload(upload);!
upload.pause();!
upload.abort(); !
download.abort();!
TransferProgress transferred = upload.getProgress();!
transferred.getBytesTransferred();!
transferred.getPercentTransferred();!
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
Amazon SNS
Mobile Push
Publish
Publish
Publish
Publish
Topic
Amazon SNS
Mobile Push
"  
"  
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
• 
• 
• 
• 
• 
• 
• 
 
 
 
 
 
 
 
 
 
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
"
"  
"
• 
• 
• 
• 
• 
• 
• 
"  
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
• 
• 
• 
• 
• 
• 
• 
• 
"  
"  
"  
"  
ü 
ü 
ü 
ü 
ü 
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development
CTO Night & Days 2015 Winter - AWS Mobile Development

More Related Content

PDF
Amazon API Gateway を活用したゲームサーバー構築
PDF
An introduction to serverless architectures (February 2017)
PDF
Continuous Deployment with Amazon Web Services
PDF
AWSの進化とSmartNewsの裏側
PDF
SmartNews's journey into microservices
PDF
Infrastructure as code with Amazon Web Services
PDF
Building serverless apps with Node.js
PDF
Building Serverless APIs (January 2017)
Amazon API Gateway を活用したゲームサーバー構築
An introduction to serverless architectures (February 2017)
Continuous Deployment with Amazon Web Services
AWSの進化とSmartNewsの裏側
SmartNews's journey into microservices
Infrastructure as code with Amazon Web Services
Building serverless apps with Node.js
Building Serverless APIs (January 2017)

What's hot (10)

PDF
Infrastructure as Code: Manage your Architecture with Git
PDF
Japanese Startup Use-Cases and Tech Deep Dive
PDF
[AWS Hero 스페셜] 서버리스 기반 검색 서비스 구축하기 - 이상현(스마일벤처스) :: AWS Community Day Online ...
PDF
AWS CloudFormation (February 2016)
PDF
자바를 잡아주는 GURU가 있다구!? - 우여명 (아이스크림에듀) :: AWS Community Day 2020
PDF
AWS meetup「Apache Spark on EMR」
PDF
Building a data warehouse with Amazon Redshift … and a quick look at Amazon ...
PDF
Scaling on AWS for the First 10 Million Users at Websummit Dublin
PDF
Developing and deploying serverless applications (February 2017)
PDF
Serverless Frameworks on AWS
Infrastructure as Code: Manage your Architecture with Git
Japanese Startup Use-Cases and Tech Deep Dive
[AWS Hero 스페셜] 서버리스 기반 검색 서비스 구축하기 - 이상현(스마일벤처스) :: AWS Community Day Online ...
AWS CloudFormation (February 2016)
자바를 잡아주는 GURU가 있다구!? - 우여명 (아이스크림에듀) :: AWS Community Day 2020
AWS meetup「Apache Spark on EMR」
Building a data warehouse with Amazon Redshift … and a quick look at Amazon ...
Scaling on AWS for the First 10 Million Users at Websummit Dublin
Developing and deploying serverless applications (February 2017)
Serverless Frameworks on AWS
Ad

Viewers also liked (20)

PDF
CTO Night & Days 2015 Winter - AWS Mobile Testing
PDF
Amazon Aurora の活用
PDF
スタートアップ向け構成例とAWS活用事例(福岡市スタートアップカフェ)
PDF
AWS ロボを作ろう JAWSUG Kobe
PDF
Amazon Aurora の活用 - Developers.IO in OSAKA
PDF
AWS SDK for PHP のインストールから 始めるクラウドマスターへの道 〜 Promise による非同期オペレーション 〜
PDF
Amazon Pinpoint - re:Invent Serverless Follow Up - 20161207
PDF
関西スタートアップAWS勉強会 スタートアップ最新事例
PDF
SA プライムなう! - AWS IoT とロボットアームでお絵かき
PDF
Amazon Web Services (AWS) のご紹介
PDF
Amazon AI のスゴいデモ(仮) - Serverless Meetup Osaka
PDF
日本語でおk AI スピーカーを作ってみた
PDF
Application Deployment on AWS
PDF
CTO Night & Day Morning Session "スタートアップCTOならおさえておきたいAWS基本構成"
PDF
CTO Night & Day Morning Session "Auto Scaling & Spot Instances Deep Dive"
PDF
AWS Search Services
PDF
Amazon EC2 Container Service Deep dive
PDF
AWS を活用したモバイル開発 - 関西ソーシャルゲーム勉強会・2015夏
PDF
[Hatsune Miku] Shoot Frieza with Amazon Kinesis ! [EN]
PDF
セキュリティCDN: Imperva Incapsula
CTO Night & Days 2015 Winter - AWS Mobile Testing
Amazon Aurora の活用
スタートアップ向け構成例とAWS活用事例(福岡市スタートアップカフェ)
AWS ロボを作ろう JAWSUG Kobe
Amazon Aurora の活用 - Developers.IO in OSAKA
AWS SDK for PHP のインストールから 始めるクラウドマスターへの道 〜 Promise による非同期オペレーション 〜
Amazon Pinpoint - re:Invent Serverless Follow Up - 20161207
関西スタートアップAWS勉強会 スタートアップ最新事例
SA プライムなう! - AWS IoT とロボットアームでお絵かき
Amazon Web Services (AWS) のご紹介
Amazon AI のスゴいデモ(仮) - Serverless Meetup Osaka
日本語でおk AI スピーカーを作ってみた
Application Deployment on AWS
CTO Night & Day Morning Session "スタートアップCTOならおさえておきたいAWS基本構成"
CTO Night & Day Morning Session "Auto Scaling & Spot Instances Deep Dive"
AWS Search Services
Amazon EC2 Container Service Deep dive
AWS を活用したモバイル開発 - 関西ソーシャルゲーム勉強会・2015夏
[Hatsune Miku] Shoot Frieza with Amazon Kinesis ! [EN]
セキュリティCDN: Imperva Incapsula
Ad

Similar to CTO Night & Days 2015 Winter - AWS Mobile Development (20)

PPTX
Cloud platforms - Cloud Computing
PDF
AWS Česko-Slovenský Webinár 03: Vývoj v AWS
PPTX
PPTX
AWS_CLOUD (2).pptx
PDF
The IoT Academy_awstraining_part2_aws_ec2_iaas
PDF
Aws summit strikingly analytics
PPTX
Aws tutorial for beginners- tibacademy.in
PPTX
Building Cloud-Powered Mobile Apps
PPTX
AWS re:Invent 2013 Recap
PPTX
Amazon Web Services OverView
PDF
Bluesoft @ AWS re:Invent 2017 + AWS 101
PDF
マイクロサービスを AWS サーバレス&コンテナで実装する方法
PDF
20191126 AWS Black Belt Online Seminar Amazon AppStream 2.0
PPTX
Aws Solution Architecture Associate - summary
PPT
Aws oct18
PPTX
Tracking and Monitoring APIs at Scale
PDF
Introduction to Amazon Web Services
PDF
Building Event-Driven Serverless Applications - AWS - Danilo Poccia
ODP
Introduction to AWS
KEY
AWS Security: A Practitioner's Perspective
Cloud platforms - Cloud Computing
AWS Česko-Slovenský Webinár 03: Vývoj v AWS
AWS_CLOUD (2).pptx
The IoT Academy_awstraining_part2_aws_ec2_iaas
Aws summit strikingly analytics
Aws tutorial for beginners- tibacademy.in
Building Cloud-Powered Mobile Apps
AWS re:Invent 2013 Recap
Amazon Web Services OverView
Bluesoft @ AWS re:Invent 2017 + AWS 101
マイクロサービスを AWS サーバレス&コンテナで実装する方法
20191126 AWS Black Belt Online Seminar Amazon AppStream 2.0
Aws Solution Architecture Associate - summary
Aws oct18
Tracking and Monitoring APIs at Scale
Introduction to Amazon Web Services
Building Event-Driven Serverless Applications - AWS - Danilo Poccia
Introduction to AWS
AWS Security: A Practitioner's Perspective

More from 崇之 清水 (14)

PDF
WordPress RESTful API & Amazon API Gateway (English version)
PDF
知らなきゃ損なアップデートを振り返り(2020年分)- いにしえのサービスから勝手にチョイス
PDF
RESTful API を Chalice で紐解く 〜 Python Serverless Microframework for AWS 〜
PDF
クラウドを活用したセンシング/モニタリングなどデータ分析の実現
PDF
AWS 主要なサービスアップデート 6/3-11/28
PDF
5分でサーバーレスの環境構築から本番デプロイまでやったろやないか! - Serverless Meetup Osaka #4 LT
PDF
サーバレスアプリケーションの入門と実践 - AWS Cloud Roadshow 2017 Osaka
PDF
AWS における サーバーレスの基礎からチューニングまで
PDF
データ分析 on AWS
PDF
WordPress RESTful API & Amazon API Gateway - WordCamp Kansai 2016
PDF
PHP で始める AWS モバイルサービス - PHPカンファレンス_20150530
PDF
AWS ロボ in JAWSDAYS
PDF
BaaS vs. バース ホームラン対決 - AWS Summit Tokyo 2014 Lightning Talk
PDF
Amazon SNS Mobile Push を使ってみる
WordPress RESTful API & Amazon API Gateway (English version)
知らなきゃ損なアップデートを振り返り(2020年分)- いにしえのサービスから勝手にチョイス
RESTful API を Chalice で紐解く 〜 Python Serverless Microframework for AWS 〜
クラウドを活用したセンシング/モニタリングなどデータ分析の実現
AWS 主要なサービスアップデート 6/3-11/28
5分でサーバーレスの環境構築から本番デプロイまでやったろやないか! - Serverless Meetup Osaka #4 LT
サーバレスアプリケーションの入門と実践 - AWS Cloud Roadshow 2017 Osaka
AWS における サーバーレスの基礎からチューニングまで
データ分析 on AWS
WordPress RESTful API & Amazon API Gateway - WordCamp Kansai 2016
PHP で始める AWS モバイルサービス - PHPカンファレンス_20150530
AWS ロボ in JAWSDAYS
BaaS vs. バース ホームラン対決 - AWS Summit Tokyo 2014 Lightning Talk
Amazon SNS Mobile Push を使ってみる

Recently uploaded (20)

PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
Cloud computing and distributed systems.
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Encapsulation theory and applications.pdf
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PPT
Teaching material agriculture food technology
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Modernizing your data center with Dell and AMD
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
KodekX | Application Modernization Development
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Understanding_Digital_Forensics_Presentation.pptx
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Network Security Unit 5.pdf for BCA BBA.
Cloud computing and distributed systems.
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Encapsulation theory and applications.pdf
The AUB Centre for AI in Media Proposal.docx
Reach Out and Touch Someone: Haptics and Empathic Computing
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Teaching material agriculture food technology
“AI and Expert System Decision Support & Business Intelligence Systems”
Advanced methodologies resolving dimensionality complications for autism neur...
Modernizing your data center with Dell and AMD
Spectral efficient network and resource selection model in 5G networks
KodekX | Application Modernization Development
Chapter 3 Spatial Domain Image Processing.pdf
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
20250228 LYD VKU AI Blended-Learning.pptx
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Bridging biosciences and deep learning for revolutionary discoveries: a compr...

CTO Night & Days 2015 Winter - AWS Mobile Development