SlideShare a Scribd company logo
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS 公式 Webinar
https://amzn.to/JPWebinar
過去資料
https://amzn.to/JPArchive
Solutions Architect, Enterprise
布村 純也
2019/8/21
AWS AppSync
サービスカットシリーズ
[AWS Black Belt Online Seminar]
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
自己紹介
布村 純也 (Atsuya, Nunomura)
AWS Amplify AWS AppSync AWS Lambda
 所属 :
Solution Architect, Enterprise
 Background
Web/Mobil アプリケーション、API・ Web Service開発、Apollo
 好きな AWS のサービス:
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS Black Belt Online Seminar とは
「サービス別」「ソリューション別」「業種別」のそれぞれのテーマに分かれて、アマゾ
ン ウェブ サービス ジャパン株式会社が主催するオンラインセミナーシリーズです。
質問を投げることができます!
• 書き込んだ質問は、主催者にしか見えません
• 今後のロードマップに関するご質問は
お答えできませんのでご了承下さい
① 吹き出しをクリック
② 質問を入力
③ Sendをクリック
Twitter ハッシュタグは以下をご利用ください
#awsblackbelt
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
内容についての注意点
• 本資料では2019年8月21日時点のサービス内容および価格についてご説明しています。最新の情
報はAWS公式ウェブサイト(http://aws.amazon.com)にてご確認ください。
• 資料作成には十分注意しておりますが、資料内の価格とAWS公式ウェブサイト記載の価格に相
違があった場合、AWS公式ウェブサイトの価格を優先とさせていただきます。
• 価格は税抜表記となっています。日本居住者のお客様が東京リージョンを使用する場合、別途消
費税をご請求させていただきます。
• AWS does not offer binding price quotes. AWS pricing is publicly available and is subject to
change in accordance with the AWS Customer Agreement available at
http://aws.amazon.com/agreement/. Any pricing information included in this document is provided
only as an estimate of usage charges for AWS services based on certain information that you
have provided. Monthly charges will be based on your actual use of AWS services, and may vary
from the estimates provided.
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
アジェンダ
■ AWS AppSyncとは!?
■ 先ずはGraphQL ..
■ 改めて AWS AppSyncとは
■ 料金
■ 重要機能アップデート
■ まとめ
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential and Trademark
AWS AppSyncとは!?
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS AppSync
AWS AppSyncGraphhQL
Managed
AWS AppSync は GraphQL マネージド・サービス
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
代表的なWebAPI Model
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential and Trademark
先ずはGraphQL ..
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
GraphQL とは!?
ー TL;DR ー
■ GraphQL API用の OSS QUERY言語
(A query language for your API)
■ 定義に従ってQUERYを書きサーバーからJSONを取得
■ 処理形態は取得/Query、変更/Mutation、購読/Subscription
https://graphql.org
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
登場までの変遷
Web (HTML)
RDB
RESTful API
RDB No
SQL
GraphQL
RDB No
SQL
API
(+)
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
なぜ登場した!?
■ REST API開発者、利用者の課題
・API仕様のドキュメント管理が大変
・APIの叩き方を理解するのが大変
・APIのドキュメントと実装がズレてケンカ
■ クライアント開発者からの不満
・1ページ表示するのに幾つもAPIを叩かないといけない
・折角イベントドリブンに作ってもサーバーとの接続は結局
Request / Responseの形が残る
(T_T)
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
GraphQLによって得られるメリット
クライアント/サーバー間のインタフェースが
クリーンになる
通信オーバーヘッドが削減される
APIドキュメント作成に費やす時間が不要になる
APIを理解するのに費やす時間が削減される
(^ ^)
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
なぜGraphQLが注目されているか? - GraphQLの特徴 -
1. 型指定されたスキーマ
2. クライアントからのレスポンス形式の指定
3. サブスクリプションを利用したリアルタイム処理
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
なぜGraphQLが注目されているか? - GraphQLの特徴 -
1. 型指定されたスキーマ
APIドキュメントを手動で記述する必要が無くなり、
APIを定義したスキーマをベースに自動生成
2. クライアントからのレスポンス形式の指定
3. サブスクリプションを利用したリアルタイム処理
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
スキーマ定義
type Query {
getTodos: [Todo]
}
type Todo {
id: ID!
name: String
description: String
priority: Int
duedate: String
}
スカラー型、オブジェクト型、
列挙型などを利用可能
Not Nullは感嘆符で表現
ID!
リストは角カッコで表現
[String!]
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
ドキュメント自動生成
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Query実行環境
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
なぜGraphQLが注目されているか? - GraphQLの特徴 -
1. 型指定されたスキーマ
2. クライアントからのレスポンス形式の指定
・オーバーフェッチ、アンダーフェッチが無くなる
・クリーンなインタフェース
3. サブスクリプションを利用したリアルタイム処理
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
クライアントがレスポンス形式を指定
{
"id": "1",
"name": "Get Milk",
“priority": "1"
},
{
"id": “2",
"name": “Go to gym",
“priority": “5"
},…
type Query {
getTodos: [Todo]
}
type Todo {
id: ID!
name: String
description: String
priority: Int
duedate: String
}
query {
getTodos {
id
name
priority
}
}
Schemaとモデル
データ (Type)
クライアントが必要な
ものだけをリクエスト
リクエストしたデータ
だけが返される
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
クリーンなインタフェース
RESTとGraphQLのAPI アーキテクチャ
/posts /comments /authors
REST API
posts comments authors
GraphQL API
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
なぜGraphQLが注目されているか? - GraphQLの特徴 -
1. 型指定されたスキーマ
2. クライアントからのレスポンス形式の指定
3. サブスクリプションを利用したリアルタイム処理
クライアントはデータをサブスクライブする事で
イベント・ドリブンに処理を実装可能
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
GraphQLの処理形態
Query:取得 Subscription:購読
Mutation:変更
Mutation
Subscription
“Event !!”
A
B
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
GraphQL Subscription
リアルタイムでのデータ購読
Mutationをトリガーとしたイベントベースモード
mutation addPost( id:123
title: "New post!"
author: "Nadia"){
id
title
author
}
data: [{
id:123,
title:"New Post!"
author:"Nadia"
}]
BA
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
スキーマ定義構成
type Subscription {
addedPost: Post
@aws_subscribe(mutations: ["addPost"])
deletedPost: Post
@aws_subscribe(mutations: ["deletePost"])
}
type Mutation {
addPost(id: ID! author: String! title:
String content: String): Post!
deletePost(id: ID!): Post!
}
subscription NewPostSub {
addedPost {
__typename
version
title
content
author
url
}
}
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
GraphQL Subscription ハンドシェイク
Subscription NewPostSub {
addedPost{…}
}
WebSocket URL and Connection Payload
Secure Websocket Connection (wss://)
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential and Trademark
改めて AWS AppSyncとは
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS AppSync
GraphQL マネージド・サービス
直ぐにGraphQLの利用を始められます
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS AppSync
GraphQL
マネージド・サービス
アカウントの
DataSourceに接続
データ同期、リアルタイム、
オフライン機能
GraphQL ファサード 競合の検出と解決 セキュリティ
(API Key, IAM, Cognito, OIDC)
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
開発者の課題解決
リアルタイム
コラボレー
ション
同期を考慮し
たオフライン
プログラミン
グ
必要なデータ
のみの取得
複数のデータ
ソースへの
アクセス
アクセス制御
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Usecase
■ リアルタイム
・最新の情報をウォッチするダッシュボード
・ほぼリアルタイムでデータを更新
■ コラボレーション
・複数ユーザーが共同編集を行うアプリケーション
・ドキュメント、画像、テキストメッセージ等、様々な
コンテンツタイプを自動更新
■ ソーシャルメディア
・ソーシャルメディアやチャット
・複数ユーザー間でのメッセージング管理をサポート
・オフライン時でもアプリケーションを操作でき、
再接続時に自動 Sync
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS AppSync のコンセプト
■ AWS App Sync Client
認証、オフラインロジックなどを含んだClient
■ Resolver
リクエスト / レスポンスの処理を記述する関数
■ Data Source
DynamoDB / Lambda / Aurora Serverless / Elasticsearch / HTTP Endpoint
■ Identity
GraphQL Proxy へのリクエストの認証
■ GraphQL Proxy
リクエストのマッピング、コンフリクトのハンドリング、アクセスコントロール
■ Operation
Query / Mutation / Subscription など GraphQL のオペレーション
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS AppSync
/graphql
AWS AppSync アーキテクチャ
DynamoDB
Elasticsearch
HTTP Endpoint
Lambda
Aurora
Serverless
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS AppSync
DynamoDB
Elasticsearch
/graphql
HTTP Endpoint
Lambda
Aurora
Serverless
(Subscription)
(Resolvers)
(DataSources)
(Schema)
AWS AppSync アーキテクチャ
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
DataSource 例 (DynamoDB + Elasticsearch)
Amazon
DynamoDB
Elasticsearch
/addPost
/searchPosts
データソースを組み合わせることで高度な検索にも対応可能。
キーワード検索、ファジー検索、地理空間検索…
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
DataSource 例 (Lambdaと3rd Party API)
/searchPosts
LambdaをDataSourceとして扱えるため、なんでもできる
外部のWebAPIを叩くことも可能
/searchAuthor
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS AppSync
AppSyncバックグラウンドの
Resolver、DataSourceの組合せは
開発者の自由
開発における拡張性が非常に高く
迅速なプロトタイピングが可能
(もちろん自由が高い分、事前の設計はより重要に)
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
迅速なプロトタイピング
Schema
定義
DataSource
との接続
クライアント
の設定
AWS AppSync試行ステップ
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
迅速なプロトタイピング
Schema
定義
DataSource
との接続
クライアント
の設定
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS AppSync
DynamoDB
Elasticsearch
/graphql
HTTP Endpoint
Lambda
Aurora
Serverless
(Subscription)
(Resolvers)
(DataSources)
AWS AppSync - Schema定義
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Schema定義
■ スキーマはサーバの機能を記述し、クエリが
有効かどうかを判断する為に使用される。
■ GraphQL API は1つの GraphQL Schema
で定義され、SDL(Schema Definition
Language)によって記述さる。
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Schemaの書き方 – Root Schema
schema {
query:Query
mutation: Mutation
subscription: Subscription
}
Subscription:購読
Mutation:更新
Query:取得
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Schemaの書き方 - Type
type Query {
getTodos: [Todo]
}
type Todo {
id: ID!
name: String
description: String
status: TodoStatus
}
enum TodoStatus {
done
pending
}
スカラー型、オブジェクト型、
列挙型などを利用可能
Not Nullは感嘆符で表現
ID!
リストは角カッコで表現
[String!]
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
迅速なプロトタイピング
Schema
定義
DataSource
との接続
クライアント
の設定
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS AppSync
DynamoDB
Elasticsearch
/graphql
HTTP Endpoint
Lambda
Aurora
Serverless
(Subscription)
(Resolvers)
(DataSources)
AWS AppSync - Resolver
(Schema)
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Resolver マッピングテンプレート
■ マッピングテンプレートは、GraphQL
リクエストをデータソースの命令に変換する
方法と、データソースからの応答をGraphQL
レスポンスに変換する方法を定義する
■ Resolver マッピングテンプレートは、VTL
(Velocity Template Language)によって
記述さる。
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Resolver マッピングテンプレートで実施する例
■ アクセスコントロール
■ 新規アイテムのデフォルト値
■ 入力のバリデーション、フォーマット
■ データの変換と整形
■ リスト、マップの加工
■ ユーザーIDに基づいたレスポンスのフィルタリング/変更
■ 複雑な権限チェック
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
2種類のマッピングテンプレート
■ Request テンプレート(Request  DataSource命令)
■ Responseテンプレート(DataSource応答  GraphQL Response)
Request Response
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Request マッピングテンプレート 例
{
"version" : "2017-02-28",
"operation" : "GetItem",
"key" : {
"id" : { "S" : "${context.arguments.id}" }
}
}
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Response マッピングテンプレート 例
■ デフォルトで返す場合:
■ データを結合する場合:
$utils.toJson($context.result)
{
"id" : ${context.data.id},
"title" : "${context.data.theTitle}",
"content" : "${context.data.body1} ${context.data.body2}"
}
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Request マッピングテンプレート 例(詳細)
#set($friendIds = [])
#set($friendships = $ctx.prev.result.items)
#foreach($tmp in $friendships)
$util.qr($friendIds.add($tmp.friendId))
#end
{
"version" : "2018-05-29",
"operation" : "Scan",
"filter" : {
"expression": "contains(:fIds, userId) AND begins_with(registtime, :trgtMo)",
"expressionValues" : {
":fIds" : $util.dynamodb.toDynamoDBJson($friendIds),
":trgtMo" : {S" : "$util.time.nowFormatted("yyyyMM", "Asia/Tokyo")"
■ DataSourceはDynamoDB
■ 配列を作成
■ 配列に前処理の結果Itemsを格納
■ DynamoDBに対してScan実行
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Response マッピングテンプレート 例(詳細)
## Raise a GraphQL field error in case of a datasource invocation error
#if($ctx.error)
$util.error($ctx.error.message, $ctx.error.type)
#end
## Pass back the result from DynamoDB. **
$util.toJson($ctx.result)
エラーが無ければJSON Parseした
結果を返す
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
マッピングテンプレート記述方法
━ 直接記述(自動補完) ━
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
・スキーマ内の定義済みのTypeから
DynamoDB テーブルをプロビジョニング
・リゾルバを利用してフィルタ、検索、
比較などを簡単に組み込み
マッピングテンプレート記述方法
━ No-code GraphQL API Builderを利用 ━
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
マッピングテンプレート記述方法
━ Schemaからジェネレート ━
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
マッピングテンプレート記述方法
━ DynamoDBからジェネレート ━
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
迅速なプロトタイピング
Schema
定義
DataSource
との接続
クライアント
の設定
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS AppSync
DynamoDB
Elasticsearch
/graphql
HTTP Endpoint
Lambda
Aurora
Serverless
(Subscription)
(Resolvers)
(DataSources)
クライアント設定
(Schema)
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
GraphQL Endpointへの接続情報
export default {
"graphqlEndpoint": "https://**.appsync-api.**.amazonaws.com/graphql",
"region": "us-east-1",
"authenticationType": ”API_KEY",
"apiKey": ”***"
}
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
クライアント設定
const client = new AWSAppSyncClient({
url: awsconfig.ENDPOINT,
region: AWS.config.region,
auth: { type: AUTH_TYPE.AWS_IAM, credentials: Auth.currentCredentials() }
});
const WithProvider = () => (
<ApolloProvider client={client}>
<Rehydrated>
<AppWithData />
</Rehydrated>
</ApolloProvider>
);
自動でオフライン利用が可能に
https://aws.github.io/aws-amplify/
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
クライアント認証例
//API Key
const client = new AWSAppSyncClient({
url: awsconfig.ENDPOINT,
region: awsconfig.REGION,
auth: { type: AUTH_TYPE.API_KEY, apiKey: awsconfig.apiKey}
});
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
クライアント認証例
//IAM認証
auth: { type: AUTH_TYPE.AWS_IAM,
credentials: Auth.currentCredentials()
}
//Cognito User Pool 認証
auth: { type: AUTH_TYPE.AMAZON_COGNITO_USER_POOLS,
jwtToken: Auth.currentSession().accessToke.jwtToken
}
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential and Trademark
料金
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
料金
* AWSアカウントのサインアップから12ヶ月間
無料枠 (月) * 価格
クエリとデータ変更操作 250,000 件 $4.00 / 100万件
リアルタイム更新 250,000 件 $2.00 / 100万件
リアルタイム更新 接続時間 (分) 600,000 接続-分 $0.08 / 100万分
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential and Trademark
重要機能アップデート
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
1. Pipeline Resolver / Delta Sync
・ 複数ResolverをFunctionとして束ねて実行する事が可能に
・ Function間のデータ受け渡しもVTLで記述可能
・ Delta Syncでキャッシュ2層に分割した差分同期が可能に
(Pipeline Resolverとの併用を推奨)
2. DataSourceにAurora Serverlessを追加
・ DataSourceにAurora Serverlessが利用可能に
3. AWS Amplify FrameworkがAurora Serverless、
GraphQL、OAuthに対応
・ DataSourceとしてAurora Serverlessを指定可能に
・ GraphQL変換ライブラリにてOAuth対応
重要機能アップデート(1)
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
4. AppSyncがGraphQL APIのタグ付けサポート
タグ付けによりQuery、Mutation、Subscription等の操作に対するコスト配分及び
追跡する事が可能に
5. AppSyncでGraphQLオペレーションのパフォーマンス
と状態の可視性が向上
・ AppSync単独でのログ出力は元々設定で可能
・ CloudWatch Logs Insights、Amazon Elasticsearch、その他ログ分析
ソリューションへのシームレスな統合が可能に
・ GraphQLへのRequestのパフォーマンスやSchema Fieldの使用状況の
把握が容易に
重要機能アップデート(2)
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
6. Amplify FrameworkにてLambda関数、DynamoDB
カスタムインデックスをサポート
・ GraphQL Transformer及び新しい@functionディレクティブを使用
してLambda関数を追加する事が可能に
7. Multi-Auth対応
・ 複数の認証タイプを組合せて同時に設定可能に
{ API Key、IAM、Cognito User Pool、OIDC }
・ 複数認証プロバイダ対応が可能に
・ Dev/Prod環境での認証方式の変更等が可能に
重要機能アップデート(3)
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
1. Pipeline Resolver / Delta Sync
Function1
単独Resolverとして実行
Function2
単独Resolverとして実行
(Function1の結果取得も可能)
Pipeline
Resolver
複数Functionで構成された1Resolverとして動作する
→ 関連する連続処理を纏めて1つのResolverとして動作可能
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
5. AppSyncでGraphQLオペレーションのパフォーマンスと状態の可視性が向上
■ Latencyが大きいResolver Top.10
■ Latencyが大きいRequest Top.10
■ エラーが多いマッピングテンプレート
等を自動的に可視化
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
5. AppSyncでGraphQLオペレーションのパフォーマンスと状態の可視性が向上
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
7. Multi-Auth対応
API Key、IAM、Cognito User Pool、OIDCから複数設定可能になった事により、
Dev/Prod環境での認証使い分けや、複数認証プロバイダを利用するより柔軟な認証が
可能に。
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential and Trademark
まとめ
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
まとめ
1. 型指定されたスキーマ
APIドキュメントを手動で記述する必要が無くなり、
APIを定義したスキーマをベースに自動生成
2. クライアントからのレスポンス形式の指定
・オーバーフェッチ、アンダーフェッチが無くなる
・クリーンなインタフェース
3. サブスクリプションを利用したリアルタイム処理
クライアントはデータをサブスクライブする事でイベント・
ドリブンに処理を実装可能
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Happy coding with AWS AppSync
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Q&A
いただいたご質問については
AWS Japan Blog 「https://aws.amazon.com/jp/blogs/news/」にて
後日掲載します。
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS の日本語資料の場所「AWS 資料」で検索
https://amzn.to/JPArchive
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
第7回
Amazon SageMaker 事例祭り
2019 年 8 月 29 日(木)
アマゾン新目黒オフィス
目黒セントラルスクエア21F で開催
詳細・お申込みはこちらから>>
https://amzn.to/2MtH514
アジェンダ
 AWSの機械学習サービス概要
 Amazon SageMaker の基礎
 Amazon SageMaker Ground Truthの概要とデモンストレーション
 お客様事例
 株式会社CACクロア 様
「世に出ている医薬品の副作用情報を管理する業務で、どのようにAI/MLを活用しているか?」
 サントリーシステムテクノロジー株式会社 様
「技術検証プロジェクトにおけるSageMaker活用例」
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved.
T O K Y O
今年もやります!イノベーションをリードするDeveloperのための秋の祭典「AWS DevDay Tokyo 2019」
・今おさえておくべき技術領域を網羅し、新たな時代に活躍するDeveloperとなるための
知識とスキルを身に着ける2日間
・豪華スピーカーによるゼネラルセッション
・50にのぼるセッションとワークショップで構成。CFP枠を拡大し、より実践的なコンテンツへ
日程:2019年10月3日(木)ー4日(金)
会場:神田明神ホール(東京都千代田区 神田明神内)
主催:アマゾン ウェブ サービス ジャパン株式会社
協賛:インテル株式会社
今年の会場は「神田明神」
Save the dateはこちらへ
https://amzn.to/devdaytokyo2019
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS 公式 Webinar
https://amzn.to/JPWebinar
過去資料
https://amzn.to/JPArchive
ご視聴ありがとうございました

More Related Content

What's hot

20191023 AWS Black Belt Online Seminar Amazon EMR
20191023 AWS Black Belt Online Seminar Amazon EMR20191023 AWS Black Belt Online Seminar Amazon EMR
20191023 AWS Black Belt Online Seminar Amazon EMR
Amazon Web Services Japan
 
20210316 AWS Black Belt Online Seminar AWS DataSync
20210316 AWS Black Belt Online Seminar AWS DataSync20210316 AWS Black Belt Online Seminar AWS DataSync
20210316 AWS Black Belt Online Seminar AWS DataSync
Amazon Web Services Japan
 
20191029 AWS Black Belt Online Seminar Elastic Load Balancing (ELB)
20191029 AWS Black Belt Online Seminar Elastic Load Balancing (ELB)20191029 AWS Black Belt Online Seminar Elastic Load Balancing (ELB)
20191029 AWS Black Belt Online Seminar Elastic Load Balancing (ELB)
Amazon Web Services Japan
 
20190522 AWS Black Belt Online Seminar AWS Step Functions
20190522 AWS Black Belt Online Seminar AWS Step Functions20190522 AWS Black Belt Online Seminar AWS Step Functions
20190522 AWS Black Belt Online Seminar AWS Step Functions
Amazon Web Services Japan
 
20200526 AWS Black Belt Online Seminar AWS X-Ray
20200526 AWS Black Belt Online Seminar AWS X-Ray20200526 AWS Black Belt Online Seminar AWS X-Ray
20200526 AWS Black Belt Online Seminar AWS X-Ray
Amazon Web Services Japan
 
AWS Black Belt Online Seminar 2017 Amazon ElastiCache
AWS Black Belt Online Seminar 2017 Amazon ElastiCacheAWS Black Belt Online Seminar 2017 Amazon ElastiCache
AWS Black Belt Online Seminar 2017 Amazon ElastiCache
Amazon Web Services Japan
 
20190730 AWS Black Belt Online Seminar Amazon CloudFrontの概要
20190730 AWS Black Belt Online Seminar Amazon CloudFrontの概要20190730 AWS Black Belt Online Seminar Amazon CloudFrontの概要
20190730 AWS Black Belt Online Seminar Amazon CloudFrontの概要
Amazon Web Services Japan
 
20190731 Black Belt Online Seminar Amazon ECS Deep Dive
20190731 Black Belt Online Seminar Amazon ECS Deep Dive20190731 Black Belt Online Seminar Amazon ECS Deep Dive
20190731 Black Belt Online Seminar Amazon ECS Deep Dive
Amazon Web Services Japan
 
20190220 AWS Black Belt Online Seminar Amazon S3 / Glacier
20190220 AWS Black Belt Online Seminar Amazon S3 / Glacier20190220 AWS Black Belt Online Seminar Amazon S3 / Glacier
20190220 AWS Black Belt Online Seminar Amazon S3 / Glacier
Amazon Web Services Japan
 
20191002 AWS Black Belt Online Seminar Amazon EC2 Auto Scaling and AWS Auto S...
20191002 AWS Black Belt Online Seminar Amazon EC2 Auto Scaling and AWS Auto S...20191002 AWS Black Belt Online Seminar Amazon EC2 Auto Scaling and AWS Auto S...
20191002 AWS Black Belt Online Seminar Amazon EC2 Auto Scaling and AWS Auto S...
Amazon Web Services Japan
 
20190604 AWS Black Belt Online Seminar Amazon Simple Notification Service (SNS)
20190604 AWS Black Belt Online Seminar Amazon Simple Notification Service (SNS)20190604 AWS Black Belt Online Seminar Amazon Simple Notification Service (SNS)
20190604 AWS Black Belt Online Seminar Amazon Simple Notification Service (SNS)
Amazon Web Services Japan
 
Infrastructure as Code (IaC) 談義 2022
Infrastructure as Code (IaC) 談義 2022Infrastructure as Code (IaC) 談義 2022
Infrastructure as Code (IaC) 談義 2022
Amazon Web Services Japan
 
20190130 AWS Black Belt Online Seminar AWS Identity and Access Management (AW...
20190130 AWS Black Belt Online Seminar AWS Identity and Access Management (AW...20190130 AWS Black Belt Online Seminar AWS Identity and Access Management (AW...
20190130 AWS Black Belt Online Seminar AWS Identity and Access Management (AW...
Amazon Web Services Japan
 
20200422 AWS Black Belt Online Seminar Amazon Elastic Container Service (Amaz...
20200422 AWS Black Belt Online Seminar Amazon Elastic Container Service (Amaz...20200422 AWS Black Belt Online Seminar Amazon Elastic Container Service (Amaz...
20200422 AWS Black Belt Online Seminar Amazon Elastic Container Service (Amaz...
Amazon Web Services Japan
 
20190521 AWS Black Belt Online Seminar Amazon Simple Email Service (Amazon SES)
20190521 AWS Black Belt Online Seminar Amazon Simple Email Service (Amazon SES)20190521 AWS Black Belt Online Seminar Amazon Simple Email Service (Amazon SES)
20190521 AWS Black Belt Online Seminar Amazon Simple Email Service (Amazon SES)
Amazon Web Services Japan
 
20190326 AWS Black Belt Online Seminar Amazon CloudWatch
20190326 AWS Black Belt Online Seminar Amazon CloudWatch20190326 AWS Black Belt Online Seminar Amazon CloudWatch
20190326 AWS Black Belt Online Seminar Amazon CloudWatch
Amazon Web Services Japan
 
20200219 AWS Black Belt Online Seminar オンプレミスとAWS間の冗長化接続
20200219 AWS Black Belt Online Seminar オンプレミスとAWS間の冗長化接続20200219 AWS Black Belt Online Seminar オンプレミスとAWS間の冗長化接続
20200219 AWS Black Belt Online Seminar オンプレミスとAWS間の冗長化接続
Amazon Web Services Japan
 
20191105 AWS Black Belt Online Seminar Amazon Route 53 Hosted Zone
20191105 AWS Black Belt Online Seminar Amazon Route 53 Hosted Zone20191105 AWS Black Belt Online Seminar Amazon Route 53 Hosted Zone
20191105 AWS Black Belt Online Seminar Amazon Route 53 Hosted Zone
Amazon Web Services Japan
 
20201118 AWS Black Belt Online Seminar 形で考えるサーバーレス設計 サーバーレスユースケースパターン解説
20201118 AWS Black Belt Online Seminar 形で考えるサーバーレス設計 サーバーレスユースケースパターン解説20201118 AWS Black Belt Online Seminar 形で考えるサーバーレス設計 サーバーレスユースケースパターン解説
20201118 AWS Black Belt Online Seminar 形で考えるサーバーレス設計 サーバーレスユースケースパターン解説
Amazon Web Services Japan
 
Amazon Athena 初心者向けハンズオン
Amazon Athena 初心者向けハンズオンAmazon Athena 初心者向けハンズオン
Amazon Athena 初心者向けハンズオン
Amazon Web Services Japan
 

What's hot (20)

20191023 AWS Black Belt Online Seminar Amazon EMR
20191023 AWS Black Belt Online Seminar Amazon EMR20191023 AWS Black Belt Online Seminar Amazon EMR
20191023 AWS Black Belt Online Seminar Amazon EMR
 
20210316 AWS Black Belt Online Seminar AWS DataSync
20210316 AWS Black Belt Online Seminar AWS DataSync20210316 AWS Black Belt Online Seminar AWS DataSync
20210316 AWS Black Belt Online Seminar AWS DataSync
 
20191029 AWS Black Belt Online Seminar Elastic Load Balancing (ELB)
20191029 AWS Black Belt Online Seminar Elastic Load Balancing (ELB)20191029 AWS Black Belt Online Seminar Elastic Load Balancing (ELB)
20191029 AWS Black Belt Online Seminar Elastic Load Balancing (ELB)
 
20190522 AWS Black Belt Online Seminar AWS Step Functions
20190522 AWS Black Belt Online Seminar AWS Step Functions20190522 AWS Black Belt Online Seminar AWS Step Functions
20190522 AWS Black Belt Online Seminar AWS Step Functions
 
20200526 AWS Black Belt Online Seminar AWS X-Ray
20200526 AWS Black Belt Online Seminar AWS X-Ray20200526 AWS Black Belt Online Seminar AWS X-Ray
20200526 AWS Black Belt Online Seminar AWS X-Ray
 
AWS Black Belt Online Seminar 2017 Amazon ElastiCache
AWS Black Belt Online Seminar 2017 Amazon ElastiCacheAWS Black Belt Online Seminar 2017 Amazon ElastiCache
AWS Black Belt Online Seminar 2017 Amazon ElastiCache
 
20190730 AWS Black Belt Online Seminar Amazon CloudFrontの概要
20190730 AWS Black Belt Online Seminar Amazon CloudFrontの概要20190730 AWS Black Belt Online Seminar Amazon CloudFrontの概要
20190730 AWS Black Belt Online Seminar Amazon CloudFrontの概要
 
20190731 Black Belt Online Seminar Amazon ECS Deep Dive
20190731 Black Belt Online Seminar Amazon ECS Deep Dive20190731 Black Belt Online Seminar Amazon ECS Deep Dive
20190731 Black Belt Online Seminar Amazon ECS Deep Dive
 
20190220 AWS Black Belt Online Seminar Amazon S3 / Glacier
20190220 AWS Black Belt Online Seminar Amazon S3 / Glacier20190220 AWS Black Belt Online Seminar Amazon S3 / Glacier
20190220 AWS Black Belt Online Seminar Amazon S3 / Glacier
 
20191002 AWS Black Belt Online Seminar Amazon EC2 Auto Scaling and AWS Auto S...
20191002 AWS Black Belt Online Seminar Amazon EC2 Auto Scaling and AWS Auto S...20191002 AWS Black Belt Online Seminar Amazon EC2 Auto Scaling and AWS Auto S...
20191002 AWS Black Belt Online Seminar Amazon EC2 Auto Scaling and AWS Auto S...
 
20190604 AWS Black Belt Online Seminar Amazon Simple Notification Service (SNS)
20190604 AWS Black Belt Online Seminar Amazon Simple Notification Service (SNS)20190604 AWS Black Belt Online Seminar Amazon Simple Notification Service (SNS)
20190604 AWS Black Belt Online Seminar Amazon Simple Notification Service (SNS)
 
Infrastructure as Code (IaC) 談義 2022
Infrastructure as Code (IaC) 談義 2022Infrastructure as Code (IaC) 談義 2022
Infrastructure as Code (IaC) 談義 2022
 
20190130 AWS Black Belt Online Seminar AWS Identity and Access Management (AW...
20190130 AWS Black Belt Online Seminar AWS Identity and Access Management (AW...20190130 AWS Black Belt Online Seminar AWS Identity and Access Management (AW...
20190130 AWS Black Belt Online Seminar AWS Identity and Access Management (AW...
 
20200422 AWS Black Belt Online Seminar Amazon Elastic Container Service (Amaz...
20200422 AWS Black Belt Online Seminar Amazon Elastic Container Service (Amaz...20200422 AWS Black Belt Online Seminar Amazon Elastic Container Service (Amaz...
20200422 AWS Black Belt Online Seminar Amazon Elastic Container Service (Amaz...
 
20190521 AWS Black Belt Online Seminar Amazon Simple Email Service (Amazon SES)
20190521 AWS Black Belt Online Seminar Amazon Simple Email Service (Amazon SES)20190521 AWS Black Belt Online Seminar Amazon Simple Email Service (Amazon SES)
20190521 AWS Black Belt Online Seminar Amazon Simple Email Service (Amazon SES)
 
20190326 AWS Black Belt Online Seminar Amazon CloudWatch
20190326 AWS Black Belt Online Seminar Amazon CloudWatch20190326 AWS Black Belt Online Seminar Amazon CloudWatch
20190326 AWS Black Belt Online Seminar Amazon CloudWatch
 
20200219 AWS Black Belt Online Seminar オンプレミスとAWS間の冗長化接続
20200219 AWS Black Belt Online Seminar オンプレミスとAWS間の冗長化接続20200219 AWS Black Belt Online Seminar オンプレミスとAWS間の冗長化接続
20200219 AWS Black Belt Online Seminar オンプレミスとAWS間の冗長化接続
 
20191105 AWS Black Belt Online Seminar Amazon Route 53 Hosted Zone
20191105 AWS Black Belt Online Seminar Amazon Route 53 Hosted Zone20191105 AWS Black Belt Online Seminar Amazon Route 53 Hosted Zone
20191105 AWS Black Belt Online Seminar Amazon Route 53 Hosted Zone
 
20201118 AWS Black Belt Online Seminar 形で考えるサーバーレス設計 サーバーレスユースケースパターン解説
20201118 AWS Black Belt Online Seminar 形で考えるサーバーレス設計 サーバーレスユースケースパターン解説20201118 AWS Black Belt Online Seminar 形で考えるサーバーレス設計 サーバーレスユースケースパターン解説
20201118 AWS Black Belt Online Seminar 形で考えるサーバーレス設計 サーバーレスユースケースパターン解説
 
Amazon Athena 初心者向けハンズオン
Amazon Athena 初心者向けハンズオンAmazon Athena 初心者向けハンズオン
Amazon Athena 初心者向けハンズオン
 

Similar to 20190821 AWS Black Belt Online Seminar AWS AppSync

Introduzione a GraphQL
Introduzione a GraphQLIntroduzione a GraphQL
Introduzione a GraphQL
Commit University
 
GraphQL backend with AWS AppSync & AWS Lambda
GraphQL backend with AWS AppSync & AWS LambdaGraphQL backend with AWS AppSync & AWS Lambda
GraphQL backend with AWS AppSync & AWS Lambda
Aleksandr Maklakov
 
Marcia Villalba "Developing Serverless Applications with GraphQL"
Marcia Villalba "Developing Serverless Applications with GraphQL"Marcia Villalba "Developing Serverless Applications with GraphQL"
Marcia Villalba "Developing Serverless Applications with GraphQL"
Fwdays
 
Serverless APIs and you
Serverless APIs and youServerless APIs and you
Serverless APIs and you
James Beswick
 
Modern Applications Web Day | Impress Your Friends with Your First Serverless...
Modern Applications Web Day | Impress Your Friends with Your First Serverless...Modern Applications Web Day | Impress Your Friends with Your First Serverless...
Modern Applications Web Day | Impress Your Friends with Your First Serverless...
AWS Germany
 
Build your APPs in Lean and Agile Way using AWS Amplify
Build your APPs in Lean and Agile Way using AWS AmplifyBuild your APPs in Lean and Agile Way using AWS Amplify
Build your APPs in Lean and Agile Way using AWS Amplify
Amazon Web Services
 
Build a Photo-Sharing App with AI-Powered Face and Object Detection (MOB306) ...
Build a Photo-Sharing App with AI-Powered Face and Object Detection (MOB306) ...Build a Photo-Sharing App with AI-Powered Face and Object Detection (MOB306) ...
Build a Photo-Sharing App with AI-Powered Face and Object Detection (MOB306) ...
Amazon Web Services
 
善用 GraphQL 與 AWS AppSync 讓您的 Progressive Web App (PWA) 加速進化 (Level 200)
善用  GraphQL 與 AWS AppSync 讓您的  Progressive Web App (PWA) 加速進化 (Level 200)善用  GraphQL 與 AWS AppSync 讓您的  Progressive Web App (PWA) 加速進化 (Level 200)
善用 GraphQL 與 AWS AppSync 讓您的 Progressive Web App (PWA) 加速進化 (Level 200)
Amazon Web Services
 
Taking your Progressive Web App to the Next Level with GraphQL and AWS AppSync
Taking your Progressive Web App to the Next Level with GraphQL and AWS AppSyncTaking your Progressive Web App to the Next Level with GraphQL and AWS AppSync
Taking your Progressive Web App to the Next Level with GraphQL and AWS AppSync
Amazon Web Services
 
Getting Started with Serverless Architectures
Getting Started with Serverless ArchitecturesGetting Started with Serverless Architectures
Getting Started with Serverless Architectures
Amazon Web Services
 
Amplifying fullstack serverless apps with AppSync & the Amplify Framework - M...
Amplifying fullstack serverless apps with AppSync & the Amplify Framework - M...Amplifying fullstack serverless apps with AppSync & the Amplify Framework - M...
Amplifying fullstack serverless apps with AppSync & the Amplify Framework - M...
Amazon Web Services
 
Intro to AWS Amplify Toolchain: Mobile Week SF
Intro to AWS Amplify Toolchain: Mobile Week SFIntro to AWS Amplify Toolchain: Mobile Week SF
Intro to AWS Amplify Toolchain: Mobile Week SF
Amazon Web Services
 
20200513 Getting started with AWS Amplify
20200513   Getting started with AWS Amplify20200513   Getting started with AWS Amplify
20200513 Getting started with AWS Amplify
Marcia Villalba
 
Serverless days Stockholm - How to build a full-stack airline ticketing web app
Serverless days Stockholm - How to build a full-stack airline ticketing web appServerless days Stockholm - How to build a full-stack airline ticketing web app
Serverless days Stockholm - How to build a full-stack airline ticketing web app
Heitor Lessa
 
Build and Deploy Serverless Applications with AWS SAM - SRV316 - Chicago AWS ...
Build and Deploy Serverless Applications with AWS SAM - SRV316 - Chicago AWS ...Build and Deploy Serverless Applications with AWS SAM - SRV316 - Chicago AWS ...
Build and Deploy Serverless Applications with AWS SAM - SRV316 - Chicago AWS ...
Amazon Web Services
 
Serverless Computing: build and run applications without thinking about servers
Serverless Computing: build and run applications without thinking about serversServerless Computing: build and run applications without thinking about servers
Serverless Computing: build and run applications without thinking about servers
Amazon Web Services
 
Build Enterprise-Grade Serverless Apps - SRV315 - Chicago AWS Summit
Build Enterprise-Grade Serverless Apps - SRV315 - Chicago AWS SummitBuild Enterprise-Grade Serverless Apps - SRV315 - Chicago AWS Summit
Build Enterprise-Grade Serverless Apps - SRV315 - Chicago AWS Summit
Amazon Web Services
 
Develop Cross-Platform Mobile Apps with React Native, GraphQL, & AWS (MOB324)...
Develop Cross-Platform Mobile Apps with React Native, GraphQL, & AWS (MOB324)...Develop Cross-Platform Mobile Apps with React Native, GraphQL, & AWS (MOB324)...
Develop Cross-Platform Mobile Apps with React Native, GraphQL, & AWS (MOB324)...
Amazon Web Services
 
Simplify your Web & Mobile applications with cloud-based serverless backends
Simplify your Web & Mobile applicationswith cloud-based serverless backendsSimplify your Web & Mobile applicationswith cloud-based serverless backends
Simplify your Web & Mobile applications with cloud-based serverless backends
Sébastien ☁ Stormacq
 
Devops on serverless
Devops on serverlessDevops on serverless
Devops on serverless
Sébastien ☁ Stormacq
 

Similar to 20190821 AWS Black Belt Online Seminar AWS AppSync (20)

Introduzione a GraphQL
Introduzione a GraphQLIntroduzione a GraphQL
Introduzione a GraphQL
 
GraphQL backend with AWS AppSync & AWS Lambda
GraphQL backend with AWS AppSync & AWS LambdaGraphQL backend with AWS AppSync & AWS Lambda
GraphQL backend with AWS AppSync & AWS Lambda
 
Marcia Villalba "Developing Serverless Applications with GraphQL"
Marcia Villalba "Developing Serverless Applications with GraphQL"Marcia Villalba "Developing Serverless Applications with GraphQL"
Marcia Villalba "Developing Serverless Applications with GraphQL"
 
Serverless APIs and you
Serverless APIs and youServerless APIs and you
Serverless APIs and you
 
Modern Applications Web Day | Impress Your Friends with Your First Serverless...
Modern Applications Web Day | Impress Your Friends with Your First Serverless...Modern Applications Web Day | Impress Your Friends with Your First Serverless...
Modern Applications Web Day | Impress Your Friends with Your First Serverless...
 
Build your APPs in Lean and Agile Way using AWS Amplify
Build your APPs in Lean and Agile Way using AWS AmplifyBuild your APPs in Lean and Agile Way using AWS Amplify
Build your APPs in Lean and Agile Way using AWS Amplify
 
Build a Photo-Sharing App with AI-Powered Face and Object Detection (MOB306) ...
Build a Photo-Sharing App with AI-Powered Face and Object Detection (MOB306) ...Build a Photo-Sharing App with AI-Powered Face and Object Detection (MOB306) ...
Build a Photo-Sharing App with AI-Powered Face and Object Detection (MOB306) ...
 
善用 GraphQL 與 AWS AppSync 讓您的 Progressive Web App (PWA) 加速進化 (Level 200)
善用  GraphQL 與 AWS AppSync 讓您的  Progressive Web App (PWA) 加速進化 (Level 200)善用  GraphQL 與 AWS AppSync 讓您的  Progressive Web App (PWA) 加速進化 (Level 200)
善用 GraphQL 與 AWS AppSync 讓您的 Progressive Web App (PWA) 加速進化 (Level 200)
 
Taking your Progressive Web App to the Next Level with GraphQL and AWS AppSync
Taking your Progressive Web App to the Next Level with GraphQL and AWS AppSyncTaking your Progressive Web App to the Next Level with GraphQL and AWS AppSync
Taking your Progressive Web App to the Next Level with GraphQL and AWS AppSync
 
Getting Started with Serverless Architectures
Getting Started with Serverless ArchitecturesGetting Started with Serverless Architectures
Getting Started with Serverless Architectures
 
Amplifying fullstack serverless apps with AppSync & the Amplify Framework - M...
Amplifying fullstack serverless apps with AppSync & the Amplify Framework - M...Amplifying fullstack serverless apps with AppSync & the Amplify Framework - M...
Amplifying fullstack serverless apps with AppSync & the Amplify Framework - M...
 
Intro to AWS Amplify Toolchain: Mobile Week SF
Intro to AWS Amplify Toolchain: Mobile Week SFIntro to AWS Amplify Toolchain: Mobile Week SF
Intro to AWS Amplify Toolchain: Mobile Week SF
 
20200513 Getting started with AWS Amplify
20200513   Getting started with AWS Amplify20200513   Getting started with AWS Amplify
20200513 Getting started with AWS Amplify
 
Serverless days Stockholm - How to build a full-stack airline ticketing web app
Serverless days Stockholm - How to build a full-stack airline ticketing web appServerless days Stockholm - How to build a full-stack airline ticketing web app
Serverless days Stockholm - How to build a full-stack airline ticketing web app
 
Build and Deploy Serverless Applications with AWS SAM - SRV316 - Chicago AWS ...
Build and Deploy Serverless Applications with AWS SAM - SRV316 - Chicago AWS ...Build and Deploy Serverless Applications with AWS SAM - SRV316 - Chicago AWS ...
Build and Deploy Serverless Applications with AWS SAM - SRV316 - Chicago AWS ...
 
Serverless Computing: build and run applications without thinking about servers
Serverless Computing: build and run applications without thinking about serversServerless Computing: build and run applications without thinking about servers
Serverless Computing: build and run applications without thinking about servers
 
Build Enterprise-Grade Serverless Apps - SRV315 - Chicago AWS Summit
Build Enterprise-Grade Serverless Apps - SRV315 - Chicago AWS SummitBuild Enterprise-Grade Serverless Apps - SRV315 - Chicago AWS Summit
Build Enterprise-Grade Serverless Apps - SRV315 - Chicago AWS Summit
 
Develop Cross-Platform Mobile Apps with React Native, GraphQL, & AWS (MOB324)...
Develop Cross-Platform Mobile Apps with React Native, GraphQL, & AWS (MOB324)...Develop Cross-Platform Mobile Apps with React Native, GraphQL, & AWS (MOB324)...
Develop Cross-Platform Mobile Apps with React Native, GraphQL, & AWS (MOB324)...
 
Simplify your Web & Mobile applications with cloud-based serverless backends
Simplify your Web & Mobile applicationswith cloud-based serverless backendsSimplify your Web & Mobile applicationswith cloud-based serverless backends
Simplify your Web & Mobile applications with cloud-based serverless backends
 
Devops on serverless
Devops on serverlessDevops on serverless
Devops on serverless
 

More from Amazon Web Services Japan

202205 AWS Black Belt Online Seminar Amazon VPC IP Address Manager (IPAM)
202205 AWS Black Belt Online Seminar Amazon VPC IP Address Manager (IPAM)202205 AWS Black Belt Online Seminar Amazon VPC IP Address Manager (IPAM)
202205 AWS Black Belt Online Seminar Amazon VPC IP Address Manager (IPAM)
Amazon Web Services Japan
 
202205 AWS Black Belt Online Seminar Amazon FSx for OpenZFS
202205 AWS Black Belt Online Seminar Amazon FSx for OpenZFS202205 AWS Black Belt Online Seminar Amazon FSx for OpenZFS
202205 AWS Black Belt Online Seminar Amazon FSx for OpenZFS
Amazon Web Services Japan
 
202204 AWS Black Belt Online Seminar AWS IoT Device Defender
202204 AWS Black Belt Online Seminar AWS IoT Device Defender202204 AWS Black Belt Online Seminar AWS IoT Device Defender
202204 AWS Black Belt Online Seminar AWS IoT Device Defender
Amazon Web Services Japan
 
202204 AWS Black Belt Online Seminar Amazon Connect を活用したオンコール対応の実現
202204 AWS Black Belt Online Seminar Amazon Connect を活用したオンコール対応の実現202204 AWS Black Belt Online Seminar Amazon Connect を活用したオンコール対応の実現
202204 AWS Black Belt Online Seminar Amazon Connect を活用したオンコール対応の実現
Amazon Web Services Japan
 
202204 AWS Black Belt Online Seminar Amazon Connect Salesforce連携(第1回 CTI Adap...
202204 AWS Black Belt Online Seminar Amazon Connect Salesforce連携(第1回 CTI Adap...202204 AWS Black Belt Online Seminar Amazon Connect Salesforce連携(第1回 CTI Adap...
202204 AWS Black Belt Online Seminar Amazon Connect Salesforce連携(第1回 CTI Adap...
Amazon Web Services Japan
 
Amazon Game Tech Night #25 ゲーム業界向け機械学習最新状況アップデート
Amazon Game Tech Night #25 ゲーム業界向け機械学習最新状況アップデートAmazon Game Tech Night #25 ゲーム業界向け機械学習最新状況アップデート
Amazon Game Tech Night #25 ゲーム業界向け機械学習最新状況アップデート
Amazon Web Services Japan
 
20220409 AWS BLEA 開発にあたって検討したこと
20220409 AWS BLEA 開発にあたって検討したこと20220409 AWS BLEA 開発にあたって検討したこと
20220409 AWS BLEA 開発にあたって検討したこと
Amazon Web Services Japan
 
202202 AWS Black Belt Online Seminar AWS Managed Rules for AWS WAF の活用
202202 AWS Black Belt Online Seminar AWS Managed Rules for AWS WAF の活用202202 AWS Black Belt Online Seminar AWS Managed Rules for AWS WAF の活用
202202 AWS Black Belt Online Seminar AWS Managed Rules for AWS WAF の活用
Amazon Web Services Japan
 
202203 AWS Black Belt Online Seminar Amazon Connect Tasks.pdf
202203 AWS Black Belt Online Seminar Amazon Connect Tasks.pdf202203 AWS Black Belt Online Seminar Amazon Connect Tasks.pdf
202203 AWS Black Belt Online Seminar Amazon Connect Tasks.pdf
Amazon Web Services Japan
 
SaaS テナント毎のコストを把握するための「AWS Application Cost Profiler」のご紹介
SaaS テナント毎のコストを把握するための「AWS Application Cost Profiler」のご紹介SaaS テナント毎のコストを把握するための「AWS Application Cost Profiler」のご紹介
SaaS テナント毎のコストを把握するための「AWS Application Cost Profiler」のご紹介
Amazon Web Services Japan
 
Amazon QuickSight の組み込み方法をちょっぴりDD
Amazon QuickSight の組み込み方法をちょっぴりDDAmazon QuickSight の組み込み方法をちょっぴりDD
Amazon QuickSight の組み込み方法をちょっぴりDD
Amazon Web Services Japan
 
マルチテナント化で知っておきたいデータベースのこと
マルチテナント化で知っておきたいデータベースのことマルチテナント化で知っておきたいデータベースのこと
マルチテナント化で知っておきたいデータベースのこと
Amazon Web Services Japan
 
機密データとSaaSは共存しうるのか!?セキュリティー重視のユーザー層を取り込む為のネットワーク通信のアプローチ
機密データとSaaSは共存しうるのか!?セキュリティー重視のユーザー層を取り込む為のネットワーク通信のアプローチ機密データとSaaSは共存しうるのか!?セキュリティー重視のユーザー層を取り込む為のネットワーク通信のアプローチ
機密データとSaaSは共存しうるのか!?セキュリティー重視のユーザー層を取り込む為のネットワーク通信のアプローチ
Amazon Web Services Japan
 
パッケージソフトウェアを簡単にSaaS化!?既存の資産を使ったSaaS化手法のご紹介
パッケージソフトウェアを簡単にSaaS化!?既存の資産を使ったSaaS化手法のご紹介パッケージソフトウェアを簡単にSaaS化!?既存の資産を使ったSaaS化手法のご紹介
パッケージソフトウェアを簡単にSaaS化!?既存の資産を使ったSaaS化手法のご紹介
Amazon Web Services Japan
 
202202 AWS Black Belt Online Seminar Amazon Connect Customer Profiles
202202 AWS Black Belt Online Seminar Amazon Connect Customer Profiles202202 AWS Black Belt Online Seminar Amazon Connect Customer Profiles
202202 AWS Black Belt Online Seminar Amazon Connect Customer Profiles
Amazon Web Services Japan
 
Amazon Game Tech Night #24 KPIダッシュボードを最速で用意するために
Amazon Game Tech Night #24 KPIダッシュボードを最速で用意するためにAmazon Game Tech Night #24 KPIダッシュボードを最速で用意するために
Amazon Game Tech Night #24 KPIダッシュボードを最速で用意するために
Amazon Web Services Japan
 
202202 AWS Black Belt Online Seminar AWS SaaS Boost で始めるSaaS開発⼊⾨
202202 AWS Black Belt Online Seminar AWS SaaS Boost で始めるSaaS開発⼊⾨202202 AWS Black Belt Online Seminar AWS SaaS Boost で始めるSaaS開発⼊⾨
202202 AWS Black Belt Online Seminar AWS SaaS Boost で始めるSaaS開発⼊⾨
Amazon Web Services Japan
 
[20220126] JAWS-UG 2022初頭までに葬ったAWSアンチパターン大紹介
[20220126] JAWS-UG 2022初頭までに葬ったAWSアンチパターン大紹介[20220126] JAWS-UG 2022初頭までに葬ったAWSアンチパターン大紹介
[20220126] JAWS-UG 2022初頭までに葬ったAWSアンチパターン大紹介
Amazon Web Services Japan
 
202111 AWS Black Belt Online Seminar AWSで構築するSmart Mirrorのご紹介
202111 AWS Black Belt Online Seminar AWSで構築するSmart Mirrorのご紹介202111 AWS Black Belt Online Seminar AWSで構築するSmart Mirrorのご紹介
202111 AWS Black Belt Online Seminar AWSで構築するSmart Mirrorのご紹介
Amazon Web Services Japan
 
202201 AWS Black Belt Online Seminar Apache Spark Performnace Tuning for AWS ...
202201 AWS Black Belt Online Seminar Apache Spark Performnace Tuning for AWS ...202201 AWS Black Belt Online Seminar Apache Spark Performnace Tuning for AWS ...
202201 AWS Black Belt Online Seminar Apache Spark Performnace Tuning for AWS ...
Amazon Web Services Japan
 

More from Amazon Web Services Japan (20)

202205 AWS Black Belt Online Seminar Amazon VPC IP Address Manager (IPAM)
202205 AWS Black Belt Online Seminar Amazon VPC IP Address Manager (IPAM)202205 AWS Black Belt Online Seminar Amazon VPC IP Address Manager (IPAM)
202205 AWS Black Belt Online Seminar Amazon VPC IP Address Manager (IPAM)
 
202205 AWS Black Belt Online Seminar Amazon FSx for OpenZFS
202205 AWS Black Belt Online Seminar Amazon FSx for OpenZFS202205 AWS Black Belt Online Seminar Amazon FSx for OpenZFS
202205 AWS Black Belt Online Seminar Amazon FSx for OpenZFS
 
202204 AWS Black Belt Online Seminar AWS IoT Device Defender
202204 AWS Black Belt Online Seminar AWS IoT Device Defender202204 AWS Black Belt Online Seminar AWS IoT Device Defender
202204 AWS Black Belt Online Seminar AWS IoT Device Defender
 
202204 AWS Black Belt Online Seminar Amazon Connect を活用したオンコール対応の実現
202204 AWS Black Belt Online Seminar Amazon Connect を活用したオンコール対応の実現202204 AWS Black Belt Online Seminar Amazon Connect を活用したオンコール対応の実現
202204 AWS Black Belt Online Seminar Amazon Connect を活用したオンコール対応の実現
 
202204 AWS Black Belt Online Seminar Amazon Connect Salesforce連携(第1回 CTI Adap...
202204 AWS Black Belt Online Seminar Amazon Connect Salesforce連携(第1回 CTI Adap...202204 AWS Black Belt Online Seminar Amazon Connect Salesforce連携(第1回 CTI Adap...
202204 AWS Black Belt Online Seminar Amazon Connect Salesforce連携(第1回 CTI Adap...
 
Amazon Game Tech Night #25 ゲーム業界向け機械学習最新状況アップデート
Amazon Game Tech Night #25 ゲーム業界向け機械学習最新状況アップデートAmazon Game Tech Night #25 ゲーム業界向け機械学習最新状況アップデート
Amazon Game Tech Night #25 ゲーム業界向け機械学習最新状況アップデート
 
20220409 AWS BLEA 開発にあたって検討したこと
20220409 AWS BLEA 開発にあたって検討したこと20220409 AWS BLEA 開発にあたって検討したこと
20220409 AWS BLEA 開発にあたって検討したこと
 
202202 AWS Black Belt Online Seminar AWS Managed Rules for AWS WAF の活用
202202 AWS Black Belt Online Seminar AWS Managed Rules for AWS WAF の活用202202 AWS Black Belt Online Seminar AWS Managed Rules for AWS WAF の活用
202202 AWS Black Belt Online Seminar AWS Managed Rules for AWS WAF の活用
 
202203 AWS Black Belt Online Seminar Amazon Connect Tasks.pdf
202203 AWS Black Belt Online Seminar Amazon Connect Tasks.pdf202203 AWS Black Belt Online Seminar Amazon Connect Tasks.pdf
202203 AWS Black Belt Online Seminar Amazon Connect Tasks.pdf
 
SaaS テナント毎のコストを把握するための「AWS Application Cost Profiler」のご紹介
SaaS テナント毎のコストを把握するための「AWS Application Cost Profiler」のご紹介SaaS テナント毎のコストを把握するための「AWS Application Cost Profiler」のご紹介
SaaS テナント毎のコストを把握するための「AWS Application Cost Profiler」のご紹介
 
Amazon QuickSight の組み込み方法をちょっぴりDD
Amazon QuickSight の組み込み方法をちょっぴりDDAmazon QuickSight の組み込み方法をちょっぴりDD
Amazon QuickSight の組み込み方法をちょっぴりDD
 
マルチテナント化で知っておきたいデータベースのこと
マルチテナント化で知っておきたいデータベースのことマルチテナント化で知っておきたいデータベースのこと
マルチテナント化で知っておきたいデータベースのこと
 
機密データとSaaSは共存しうるのか!?セキュリティー重視のユーザー層を取り込む為のネットワーク通信のアプローチ
機密データとSaaSは共存しうるのか!?セキュリティー重視のユーザー層を取り込む為のネットワーク通信のアプローチ機密データとSaaSは共存しうるのか!?セキュリティー重視のユーザー層を取り込む為のネットワーク通信のアプローチ
機密データとSaaSは共存しうるのか!?セキュリティー重視のユーザー層を取り込む為のネットワーク通信のアプローチ
 
パッケージソフトウェアを簡単にSaaS化!?既存の資産を使ったSaaS化手法のご紹介
パッケージソフトウェアを簡単にSaaS化!?既存の資産を使ったSaaS化手法のご紹介パッケージソフトウェアを簡単にSaaS化!?既存の資産を使ったSaaS化手法のご紹介
パッケージソフトウェアを簡単にSaaS化!?既存の資産を使ったSaaS化手法のご紹介
 
202202 AWS Black Belt Online Seminar Amazon Connect Customer Profiles
202202 AWS Black Belt Online Seminar Amazon Connect Customer Profiles202202 AWS Black Belt Online Seminar Amazon Connect Customer Profiles
202202 AWS Black Belt Online Seminar Amazon Connect Customer Profiles
 
Amazon Game Tech Night #24 KPIダッシュボードを最速で用意するために
Amazon Game Tech Night #24 KPIダッシュボードを最速で用意するためにAmazon Game Tech Night #24 KPIダッシュボードを最速で用意するために
Amazon Game Tech Night #24 KPIダッシュボードを最速で用意するために
 
202202 AWS Black Belt Online Seminar AWS SaaS Boost で始めるSaaS開発⼊⾨
202202 AWS Black Belt Online Seminar AWS SaaS Boost で始めるSaaS開発⼊⾨202202 AWS Black Belt Online Seminar AWS SaaS Boost で始めるSaaS開発⼊⾨
202202 AWS Black Belt Online Seminar AWS SaaS Boost で始めるSaaS開発⼊⾨
 
[20220126] JAWS-UG 2022初頭までに葬ったAWSアンチパターン大紹介
[20220126] JAWS-UG 2022初頭までに葬ったAWSアンチパターン大紹介[20220126] JAWS-UG 2022初頭までに葬ったAWSアンチパターン大紹介
[20220126] JAWS-UG 2022初頭までに葬ったAWSアンチパターン大紹介
 
202111 AWS Black Belt Online Seminar AWSで構築するSmart Mirrorのご紹介
202111 AWS Black Belt Online Seminar AWSで構築するSmart Mirrorのご紹介202111 AWS Black Belt Online Seminar AWSで構築するSmart Mirrorのご紹介
202111 AWS Black Belt Online Seminar AWSで構築するSmart Mirrorのご紹介
 
202201 AWS Black Belt Online Seminar Apache Spark Performnace Tuning for AWS ...
202201 AWS Black Belt Online Seminar Apache Spark Performnace Tuning for AWS ...202201 AWS Black Belt Online Seminar Apache Spark Performnace Tuning for AWS ...
202201 AWS Black Belt Online Seminar Apache Spark Performnace Tuning for AWS ...
 

Recently uploaded

zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex ProofszkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
Alex Pruden
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
mikeeftimakis1
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
Enhancing Performance with Globus and the Science DMZ
Enhancing Performance with Globus and the Science DMZEnhancing Performance with Globus and the Science DMZ
Enhancing Performance with Globus and the Science DMZ
Globus
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
ControlCase
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
Dorra BARTAGUIZ
 
Assure Contact Center Experiences for Your Customers With ThousandEyes
Assure Contact Center Experiences for Your Customers With ThousandEyesAssure Contact Center Experiences for Your Customers With ThousandEyes
Assure Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..
UiPathCommunity
 
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdfSAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
Peter Spielvogel
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
Safe Software
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
UiPathCommunity
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
Kari Kakkonen
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 

Recently uploaded (20)

zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex ProofszkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
Enhancing Performance with Globus and the Science DMZ
Enhancing Performance with Globus and the Science DMZEnhancing Performance with Globus and the Science DMZ
Enhancing Performance with Globus and the Science DMZ
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
 
Assure Contact Center Experiences for Your Customers With ThousandEyes
Assure Contact Center Experiences for Your Customers With ThousandEyesAssure Contact Center Experiences for Your Customers With ThousandEyes
Assure Contact Center Experiences for Your Customers With ThousandEyes
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..
 
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdfSAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 

20190821 AWS Black Belt Online Seminar AWS AppSync

  • 1. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS 公式 Webinar https://amzn.to/JPWebinar 過去資料 https://amzn.to/JPArchive Solutions Architect, Enterprise 布村 純也 2019/8/21 AWS AppSync サービスカットシリーズ [AWS Black Belt Online Seminar]
  • 2. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 自己紹介 布村 純也 (Atsuya, Nunomura) AWS Amplify AWS AppSync AWS Lambda  所属 : Solution Architect, Enterprise  Background Web/Mobil アプリケーション、API・ Web Service開発、Apollo  好きな AWS のサービス:
  • 3. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS Black Belt Online Seminar とは 「サービス別」「ソリューション別」「業種別」のそれぞれのテーマに分かれて、アマゾ ン ウェブ サービス ジャパン株式会社が主催するオンラインセミナーシリーズです。 質問を投げることができます! • 書き込んだ質問は、主催者にしか見えません • 今後のロードマップに関するご質問は お答えできませんのでご了承下さい ① 吹き出しをクリック ② 質問を入力 ③ Sendをクリック Twitter ハッシュタグは以下をご利用ください #awsblackbelt
  • 4. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 内容についての注意点 • 本資料では2019年8月21日時点のサービス内容および価格についてご説明しています。最新の情 報はAWS公式ウェブサイト(http://aws.amazon.com)にてご確認ください。 • 資料作成には十分注意しておりますが、資料内の価格とAWS公式ウェブサイト記載の価格に相 違があった場合、AWS公式ウェブサイトの価格を優先とさせていただきます。 • 価格は税抜表記となっています。日本居住者のお客様が東京リージョンを使用する場合、別途消 費税をご請求させていただきます。 • AWS does not offer binding price quotes. AWS pricing is publicly available and is subject to change in accordance with the AWS Customer Agreement available at http://aws.amazon.com/agreement/. Any pricing information included in this document is provided only as an estimate of usage charges for AWS services based on certain information that you have provided. Monthly charges will be based on your actual use of AWS services, and may vary from the estimates provided.
  • 5. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. アジェンダ ■ AWS AppSyncとは!? ■ 先ずはGraphQL .. ■ 改めて AWS AppSyncとは ■ 料金 ■ 重要機能アップデート ■ まとめ
  • 6. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential and Trademark AWS AppSyncとは!?
  • 7. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS AppSync AWS AppSyncGraphhQL Managed AWS AppSync は GraphQL マネージド・サービス
  • 8. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 代表的なWebAPI Model
  • 9. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential and Trademark 先ずはGraphQL ..
  • 10. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. GraphQL とは!? ー TL;DR ー ■ GraphQL API用の OSS QUERY言語 (A query language for your API) ■ 定義に従ってQUERYを書きサーバーからJSONを取得 ■ 処理形態は取得/Query、変更/Mutation、購読/Subscription https://graphql.org
  • 11. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 登場までの変遷 Web (HTML) RDB RESTful API RDB No SQL GraphQL RDB No SQL API (+)
  • 12. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. なぜ登場した!? ■ REST API開発者、利用者の課題 ・API仕様のドキュメント管理が大変 ・APIの叩き方を理解するのが大変 ・APIのドキュメントと実装がズレてケンカ ■ クライアント開発者からの不満 ・1ページ表示するのに幾つもAPIを叩かないといけない ・折角イベントドリブンに作ってもサーバーとの接続は結局 Request / Responseの形が残る (T_T)
  • 13. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. GraphQLによって得られるメリット クライアント/サーバー間のインタフェースが クリーンになる 通信オーバーヘッドが削減される APIドキュメント作成に費やす時間が不要になる APIを理解するのに費やす時間が削減される (^ ^)
  • 14. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. なぜGraphQLが注目されているか? - GraphQLの特徴 - 1. 型指定されたスキーマ 2. クライアントからのレスポンス形式の指定 3. サブスクリプションを利用したリアルタイム処理
  • 15. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. なぜGraphQLが注目されているか? - GraphQLの特徴 - 1. 型指定されたスキーマ APIドキュメントを手動で記述する必要が無くなり、 APIを定義したスキーマをベースに自動生成 2. クライアントからのレスポンス形式の指定 3. サブスクリプションを利用したリアルタイム処理
  • 16. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. スキーマ定義 type Query { getTodos: [Todo] } type Todo { id: ID! name: String description: String priority: Int duedate: String } スカラー型、オブジェクト型、 列挙型などを利用可能 Not Nullは感嘆符で表現 ID! リストは角カッコで表現 [String!]
  • 17. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. ドキュメント自動生成
  • 18. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Query実行環境
  • 19. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. なぜGraphQLが注目されているか? - GraphQLの特徴 - 1. 型指定されたスキーマ 2. クライアントからのレスポンス形式の指定 ・オーバーフェッチ、アンダーフェッチが無くなる ・クリーンなインタフェース 3. サブスクリプションを利用したリアルタイム処理
  • 20. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. クライアントがレスポンス形式を指定 { "id": "1", "name": "Get Milk", “priority": "1" }, { "id": “2", "name": “Go to gym", “priority": “5" },… type Query { getTodos: [Todo] } type Todo { id: ID! name: String description: String priority: Int duedate: String } query { getTodos { id name priority } } Schemaとモデル データ (Type) クライアントが必要な ものだけをリクエスト リクエストしたデータ だけが返される
  • 21. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. クリーンなインタフェース RESTとGraphQLのAPI アーキテクチャ /posts /comments /authors REST API posts comments authors GraphQL API
  • 22. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. なぜGraphQLが注目されているか? - GraphQLの特徴 - 1. 型指定されたスキーマ 2. クライアントからのレスポンス形式の指定 3. サブスクリプションを利用したリアルタイム処理 クライアントはデータをサブスクライブする事で イベント・ドリブンに処理を実装可能
  • 23. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. GraphQLの処理形態 Query:取得 Subscription:購読 Mutation:変更 Mutation Subscription “Event !!” A B
  • 24. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. GraphQL Subscription リアルタイムでのデータ購読 Mutationをトリガーとしたイベントベースモード mutation addPost( id:123 title: "New post!" author: "Nadia"){ id title author } data: [{ id:123, title:"New Post!" author:"Nadia" }] BA
  • 25. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. スキーマ定義構成 type Subscription { addedPost: Post @aws_subscribe(mutations: ["addPost"]) deletedPost: Post @aws_subscribe(mutations: ["deletePost"]) } type Mutation { addPost(id: ID! author: String! title: String content: String): Post! deletePost(id: ID!): Post! } subscription NewPostSub { addedPost { __typename version title content author url } }
  • 26. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. GraphQL Subscription ハンドシェイク Subscription NewPostSub { addedPost{…} } WebSocket URL and Connection Payload Secure Websocket Connection (wss://)
  • 27. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential and Trademark 改めて AWS AppSyncとは
  • 28. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS AppSync GraphQL マネージド・サービス 直ぐにGraphQLの利用を始められます
  • 29. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS AppSync GraphQL マネージド・サービス アカウントの DataSourceに接続 データ同期、リアルタイム、 オフライン機能 GraphQL ファサード 競合の検出と解決 セキュリティ (API Key, IAM, Cognito, OIDC)
  • 30. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 開発者の課題解決 リアルタイム コラボレー ション 同期を考慮し たオフライン プログラミン グ 必要なデータ のみの取得 複数のデータ ソースへの アクセス アクセス制御
  • 31. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Usecase ■ リアルタイム ・最新の情報をウォッチするダッシュボード ・ほぼリアルタイムでデータを更新 ■ コラボレーション ・複数ユーザーが共同編集を行うアプリケーション ・ドキュメント、画像、テキストメッセージ等、様々な コンテンツタイプを自動更新 ■ ソーシャルメディア ・ソーシャルメディアやチャット ・複数ユーザー間でのメッセージング管理をサポート ・オフライン時でもアプリケーションを操作でき、 再接続時に自動 Sync
  • 32. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS AppSync のコンセプト ■ AWS App Sync Client 認証、オフラインロジックなどを含んだClient ■ Resolver リクエスト / レスポンスの処理を記述する関数 ■ Data Source DynamoDB / Lambda / Aurora Serverless / Elasticsearch / HTTP Endpoint ■ Identity GraphQL Proxy へのリクエストの認証 ■ GraphQL Proxy リクエストのマッピング、コンフリクトのハンドリング、アクセスコントロール ■ Operation Query / Mutation / Subscription など GraphQL のオペレーション
  • 33. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS AppSync /graphql AWS AppSync アーキテクチャ DynamoDB Elasticsearch HTTP Endpoint Lambda Aurora Serverless
  • 34. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS AppSync DynamoDB Elasticsearch /graphql HTTP Endpoint Lambda Aurora Serverless (Subscription) (Resolvers) (DataSources) (Schema) AWS AppSync アーキテクチャ
  • 35. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. DataSource 例 (DynamoDB + Elasticsearch) Amazon DynamoDB Elasticsearch /addPost /searchPosts データソースを組み合わせることで高度な検索にも対応可能。 キーワード検索、ファジー検索、地理空間検索…
  • 36. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. DataSource 例 (Lambdaと3rd Party API) /searchPosts LambdaをDataSourceとして扱えるため、なんでもできる 外部のWebAPIを叩くことも可能 /searchAuthor
  • 37. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS AppSync AppSyncバックグラウンドの Resolver、DataSourceの組合せは 開発者の自由 開発における拡張性が非常に高く 迅速なプロトタイピングが可能 (もちろん自由が高い分、事前の設計はより重要に)
  • 38. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 迅速なプロトタイピング Schema 定義 DataSource との接続 クライアント の設定 AWS AppSync試行ステップ
  • 39. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 迅速なプロトタイピング Schema 定義 DataSource との接続 クライアント の設定
  • 40. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS AppSync DynamoDB Elasticsearch /graphql HTTP Endpoint Lambda Aurora Serverless (Subscription) (Resolvers) (DataSources) AWS AppSync - Schema定義
  • 41. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Schema定義 ■ スキーマはサーバの機能を記述し、クエリが 有効かどうかを判断する為に使用される。 ■ GraphQL API は1つの GraphQL Schema で定義され、SDL(Schema Definition Language)によって記述さる。
  • 42. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Schemaの書き方 – Root Schema schema { query:Query mutation: Mutation subscription: Subscription } Subscription:購読 Mutation:更新 Query:取得
  • 43. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Schemaの書き方 - Type type Query { getTodos: [Todo] } type Todo { id: ID! name: String description: String status: TodoStatus } enum TodoStatus { done pending } スカラー型、オブジェクト型、 列挙型などを利用可能 Not Nullは感嘆符で表現 ID! リストは角カッコで表現 [String!]
  • 44. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 迅速なプロトタイピング Schema 定義 DataSource との接続 クライアント の設定
  • 45. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS AppSync DynamoDB Elasticsearch /graphql HTTP Endpoint Lambda Aurora Serverless (Subscription) (Resolvers) (DataSources) AWS AppSync - Resolver (Schema)
  • 46. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Resolver マッピングテンプレート ■ マッピングテンプレートは、GraphQL リクエストをデータソースの命令に変換する 方法と、データソースからの応答をGraphQL レスポンスに変換する方法を定義する ■ Resolver マッピングテンプレートは、VTL (Velocity Template Language)によって 記述さる。
  • 47. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Resolver マッピングテンプレートで実施する例 ■ アクセスコントロール ■ 新規アイテムのデフォルト値 ■ 入力のバリデーション、フォーマット ■ データの変換と整形 ■ リスト、マップの加工 ■ ユーザーIDに基づいたレスポンスのフィルタリング/変更 ■ 複雑な権限チェック
  • 48. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 2種類のマッピングテンプレート ■ Request テンプレート(Request  DataSource命令) ■ Responseテンプレート(DataSource応答  GraphQL Response) Request Response
  • 49. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Request マッピングテンプレート 例 { "version" : "2017-02-28", "operation" : "GetItem", "key" : { "id" : { "S" : "${context.arguments.id}" } } }
  • 50. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Response マッピングテンプレート 例 ■ デフォルトで返す場合: ■ データを結合する場合: $utils.toJson($context.result) { "id" : ${context.data.id}, "title" : "${context.data.theTitle}", "content" : "${context.data.body1} ${context.data.body2}" }
  • 51. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Request マッピングテンプレート 例(詳細) #set($friendIds = []) #set($friendships = $ctx.prev.result.items) #foreach($tmp in $friendships) $util.qr($friendIds.add($tmp.friendId)) #end { "version" : "2018-05-29", "operation" : "Scan", "filter" : { "expression": "contains(:fIds, userId) AND begins_with(registtime, :trgtMo)", "expressionValues" : { ":fIds" : $util.dynamodb.toDynamoDBJson($friendIds), ":trgtMo" : {S" : "$util.time.nowFormatted("yyyyMM", "Asia/Tokyo")" ■ DataSourceはDynamoDB ■ 配列を作成 ■ 配列に前処理の結果Itemsを格納 ■ DynamoDBに対してScan実行
  • 52. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Response マッピングテンプレート 例(詳細) ## Raise a GraphQL field error in case of a datasource invocation error #if($ctx.error) $util.error($ctx.error.message, $ctx.error.type) #end ## Pass back the result from DynamoDB. ** $util.toJson($ctx.result) エラーが無ければJSON Parseした 結果を返す
  • 53. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. マッピングテンプレート記述方法 ━ 直接記述(自動補完) ━
  • 54. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. ・スキーマ内の定義済みのTypeから DynamoDB テーブルをプロビジョニング ・リゾルバを利用してフィルタ、検索、 比較などを簡単に組み込み マッピングテンプレート記述方法 ━ No-code GraphQL API Builderを利用 ━
  • 55. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. マッピングテンプレート記述方法 ━ Schemaからジェネレート ━
  • 56. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. マッピングテンプレート記述方法 ━ DynamoDBからジェネレート ━
  • 57. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 迅速なプロトタイピング Schema 定義 DataSource との接続 クライアント の設定
  • 58. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS AppSync DynamoDB Elasticsearch /graphql HTTP Endpoint Lambda Aurora Serverless (Subscription) (Resolvers) (DataSources) クライアント設定 (Schema)
  • 59. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. GraphQL Endpointへの接続情報 export default { "graphqlEndpoint": "https://**.appsync-api.**.amazonaws.com/graphql", "region": "us-east-1", "authenticationType": ”API_KEY", "apiKey": ”***" }
  • 60. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. クライアント設定 const client = new AWSAppSyncClient({ url: awsconfig.ENDPOINT, region: AWS.config.region, auth: { type: AUTH_TYPE.AWS_IAM, credentials: Auth.currentCredentials() } }); const WithProvider = () => ( <ApolloProvider client={client}> <Rehydrated> <AppWithData /> </Rehydrated> </ApolloProvider> ); 自動でオフライン利用が可能に https://aws.github.io/aws-amplify/
  • 61. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. クライアント認証例 //API Key const client = new AWSAppSyncClient({ url: awsconfig.ENDPOINT, region: awsconfig.REGION, auth: { type: AUTH_TYPE.API_KEY, apiKey: awsconfig.apiKey} });
  • 62. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. クライアント認証例 //IAM認証 auth: { type: AUTH_TYPE.AWS_IAM, credentials: Auth.currentCredentials() } //Cognito User Pool 認証 auth: { type: AUTH_TYPE.AMAZON_COGNITO_USER_POOLS, jwtToken: Auth.currentSession().accessToke.jwtToken }
  • 63. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential and Trademark 料金
  • 64. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 料金 * AWSアカウントのサインアップから12ヶ月間 無料枠 (月) * 価格 クエリとデータ変更操作 250,000 件 $4.00 / 100万件 リアルタイム更新 250,000 件 $2.00 / 100万件 リアルタイム更新 接続時間 (分) 600,000 接続-分 $0.08 / 100万分
  • 65. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential and Trademark 重要機能アップデート
  • 66. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 1. Pipeline Resolver / Delta Sync ・ 複数ResolverをFunctionとして束ねて実行する事が可能に ・ Function間のデータ受け渡しもVTLで記述可能 ・ Delta Syncでキャッシュ2層に分割した差分同期が可能に (Pipeline Resolverとの併用を推奨) 2. DataSourceにAurora Serverlessを追加 ・ DataSourceにAurora Serverlessが利用可能に 3. AWS Amplify FrameworkがAurora Serverless、 GraphQL、OAuthに対応 ・ DataSourceとしてAurora Serverlessを指定可能に ・ GraphQL変換ライブラリにてOAuth対応 重要機能アップデート(1)
  • 67. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 4. AppSyncがGraphQL APIのタグ付けサポート タグ付けによりQuery、Mutation、Subscription等の操作に対するコスト配分及び 追跡する事が可能に 5. AppSyncでGraphQLオペレーションのパフォーマンス と状態の可視性が向上 ・ AppSync単独でのログ出力は元々設定で可能 ・ CloudWatch Logs Insights、Amazon Elasticsearch、その他ログ分析 ソリューションへのシームレスな統合が可能に ・ GraphQLへのRequestのパフォーマンスやSchema Fieldの使用状況の 把握が容易に 重要機能アップデート(2)
  • 68. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 6. Amplify FrameworkにてLambda関数、DynamoDB カスタムインデックスをサポート ・ GraphQL Transformer及び新しい@functionディレクティブを使用 してLambda関数を追加する事が可能に 7. Multi-Auth対応 ・ 複数の認証タイプを組合せて同時に設定可能に { API Key、IAM、Cognito User Pool、OIDC } ・ 複数認証プロバイダ対応が可能に ・ Dev/Prod環境での認証方式の変更等が可能に 重要機能アップデート(3)
  • 69. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 1. Pipeline Resolver / Delta Sync Function1 単独Resolverとして実行 Function2 単独Resolverとして実行 (Function1の結果取得も可能) Pipeline Resolver 複数Functionで構成された1Resolverとして動作する → 関連する連続処理を纏めて1つのResolverとして動作可能
  • 70. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 5. AppSyncでGraphQLオペレーションのパフォーマンスと状態の可視性が向上 ■ Latencyが大きいResolver Top.10 ■ Latencyが大きいRequest Top.10 ■ エラーが多いマッピングテンプレート 等を自動的に可視化
  • 71. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 5. AppSyncでGraphQLオペレーションのパフォーマンスと状態の可視性が向上
  • 72. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 7. Multi-Auth対応 API Key、IAM、Cognito User Pool、OIDCから複数設定可能になった事により、 Dev/Prod環境での認証使い分けや、複数認証プロバイダを利用するより柔軟な認証が 可能に。
  • 73. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential and Trademark まとめ
  • 74. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. まとめ 1. 型指定されたスキーマ APIドキュメントを手動で記述する必要が無くなり、 APIを定義したスキーマをベースに自動生成 2. クライアントからのレスポンス形式の指定 ・オーバーフェッチ、アンダーフェッチが無くなる ・クリーンなインタフェース 3. サブスクリプションを利用したリアルタイム処理 クライアントはデータをサブスクライブする事でイベント・ ドリブンに処理を実装可能
  • 75. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Happy coding with AWS AppSync
  • 76. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Q&A いただいたご質問については AWS Japan Blog 「https://aws.amazon.com/jp/blogs/news/」にて 後日掲載します。
  • 77. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS の日本語資料の場所「AWS 資料」で検索 https://amzn.to/JPArchive
  • 78. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 第7回 Amazon SageMaker 事例祭り 2019 年 8 月 29 日(木) アマゾン新目黒オフィス 目黒セントラルスクエア21F で開催 詳細・お申込みはこちらから>> https://amzn.to/2MtH514 アジェンダ  AWSの機械学習サービス概要  Amazon SageMaker の基礎  Amazon SageMaker Ground Truthの概要とデモンストレーション  お客様事例  株式会社CACクロア 様 「世に出ている医薬品の副作用情報を管理する業務で、どのようにAI/MLを活用しているか?」  サントリーシステムテクノロジー株式会社 様 「技術検証プロジェクトにおけるSageMaker活用例」
  • 79. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. © 2019, Amazon Web Services, Inc. or its affiliates. All rights reserved. T O K Y O 今年もやります!イノベーションをリードするDeveloperのための秋の祭典「AWS DevDay Tokyo 2019」 ・今おさえておくべき技術領域を網羅し、新たな時代に活躍するDeveloperとなるための 知識とスキルを身に着ける2日間 ・豪華スピーカーによるゼネラルセッション ・50にのぼるセッションとワークショップで構成。CFP枠を拡大し、より実践的なコンテンツへ 日程:2019年10月3日(木)ー4日(金) 会場:神田明神ホール(東京都千代田区 神田明神内) 主催:アマゾン ウェブ サービス ジャパン株式会社 協賛:インテル株式会社 今年の会場は「神田明神」 Save the dateはこちらへ https://amzn.to/devdaytokyo2019
  • 80. © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS 公式 Webinar https://amzn.to/JPWebinar 過去資料 https://amzn.to/JPArchive ご視聴ありがとうございました