SlideShare a Scribd company logo
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Making Money With Alexa Skills
Jeff Blankenburg
Senior Alexa Evangelist
Amazon Alexa
A L X 4 0 2 - R 1
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
One-Time Purchases
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Subscriptions
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Consumables
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
In-Skill Purchases
GRAPHIC THAT ILLUSTRATES PHYSICAL GOODS/SERVICES
VS. DIGITAL PRODUCTS.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
In-Skill Purchases
SAME GRAPHIC, but highlighting that the rest of the
presentation will focus on digital goods.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
In-Skill Purchases
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
In-Skill Purchases
Subscriptions and one-time purchases
$0.99 - $99.99
Consumables
$0.99 to $9.99
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
In-Skill Purchases
Your skill shouldn’t mention the price. Alexa will do that!
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
In-Skill Purchases
If you want to change the list price,
you will need to re-certify your skill.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
ISP Graphic
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Sending An Upsell Request
{
'type': 'Connections.SendRequest’,
'name': 'Upsell’,
'payload': {
'InSkillProduct': {
'productId': hintpack[0].productId
},
'upsellMessage': "You don't currently have any hints
available. Would you like to know more about the five hint pack?"
},
'token': 'correlationToken'
}
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Sending A Buy Request
{
'type': 'Connections.SendRequest’,
'name': 'Buy’,
'payload': {
'InSkillProduct': {
'productId': hintpack[0].productId
}
},
'token': 'correlationToken'
}
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Sending A Cancel Request
{
'type': 'Connections.SendRequest’,
'name': ‘Cancel’,
'payload': {
'InSkillProduct': {
'productId': hintpack[0].productId
}
},
'token': 'correlationToken'
}
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Receiving A Response - Declined
"request": {
"type": "Connections.Response",
"requestId": "amzn1.echo-api.request.c5d143cd-e8fd-42cf-bfed-1a4a5b717bfc",
"timestamp": "2018-09-20T14:06:50Z",
"locale": "en-US",
"status": {
"code": "200",
"message": "OK"
},
"name": "Buy",
"payload": {
"purchaseResult": "DECLINED",
"productId": "amzn1.adg.product.3c9467da-807c-4111-809d-03ec7b8d7726"
},
"token": "correlationToken"
}
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Receiving A Response - Accepted
"request": {
"type": "Connections.Response",
"requestId": "amzn1.echo-api.request.c5d143cd-e8fd-42cf-bfed-1a4a5b717bfc",
"timestamp": "2018-09-20T14:06:50Z",
"locale": "en-US",
"status": {
"code": "200",
"message": "OK"
},
"name": ”Upsell",
"payload": {
"purchaseResult": ”ACCEPTED",
"productId": "amzn1.adg.product.3c9467da-807c-4111-809d-03ec7b8d7726"
},
"token": "correlationToken"
}
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Receiving An Buy Response - Error
"request": {
"type": "Connections.Response",
"requestId": "amzn1.echo-api.request.c5d143cd-e8fd-42cf-bfed-1a4a5b717bfc",
"timestamp": "2018-09-20T14:06:50Z",
"locale": "en-US",
"status": {
"code": "200",
"message": "OK"
},
"name": "Buy",
"payload": {
"purchaseResult": ”ERROR",
"productId": "amzn1.adg.product.3c9467da-807c-4111-809d-03ec7b8d7726"
},
"token": "correlationToken"
}
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Offer a Buy Intent
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Don’t Be Annoying About It
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Persist, Persist, Persist
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Create an Inventory Checker
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Help Should Know Your Purchases
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
When it makes sense, combine your logic
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
In-Skill Purchases
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Everything You Need Is Right Here!
http://alexa.design/isp
Thank you!
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Jeff Blankenburg
@jeffblankenburg
jeffblan@amazon.com
Deep Dive into
Alexa's In-Skill Purchase API
ALX404-R1
Wednesday, 11:30am | MGM Grand
Learn from the Field: Best Practices for Making
Money with Alexa Skills
AL302
Wednesday, 12:15pm | Venetian
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Breakout repeats
Day of Week, Month Day
Session Title
Time – Time | Location
Day of Week, Month Day
Session Title
Time – Time | Location
Day of Week, Month Day
Session Title
Time – Time | Location
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Related breakouts
Day of Week, Month Day
Session Title
Time – Time | Location
Day of Week, Month Day
Session Title
Time – Time | Location
Day of Week, Month Day
Session Title
Time – Time | Location
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Sample code slide
var pd = require('pretty-data').pd;
var xml_pp = pd.xml(data);
var xml_min = pd.xmlmin(data [,true]);
var json_pp = pd.json(data);
var json_min = pd.jsonmin(data);
var css_pp = pd.css(data);
var css_min = pd.cssmin(data [, true]);
var sql_pp = pd.sql(data);
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Sample code slide
var pd = require('pretty-data').pd;
var xml_pp = pd.xml(data);
var xml_min = pd.xmlmin(data [,true]);
var json_pp = pd.json(data);
var json_min = pd.jsonmin(data);
var css_pp = pd.css(data);
var css_min = pd.cssmin(data [, true]);
var sql_pp = pd.sql(data);
var pd = require('pretty-data').pd;
var xml_pp = pd.xml(data);
var xml_min = pd.xmlmin(data [,true]);
var json_pp = pd.json(data);
var json_min = pd.jsonmin(data);
var css_pp = pd.css(data);
var css_min = pd.cssmin(data [, true]);
var sql_pp = pd.sql(data);
“Lorem ipsum dolor sit amet,
consectetuer adipiscing elit.
Maecenas porttitor congue massa.”
Quotation Author
Title
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Click to add slide title (size 48)
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Click to add slide title (size 48)
Main topic 1 (size 32)
Subtopic copy goes here (size 24)
Subtopic copy goes here (size 24)
Main topic 2 (size 32)
Subtopic copy goes here (size 24)
Subtopic copy goes here (size 24)
Main topic 3 (size 32)
Subtopic copy goes here (size 24)
Subtopic copy goes here (size 24)
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Click to add slide title (size 48)
• Main topic 1 (size 32)
• Subtopic copy goes here (size 24)
• Subtopic copy goes here (size 24)
• Main topic 2 (size 32)
• Subtopic copy goes here (size 24)
• Subtopic copy goes here (size 24)
• Main topic 3 (size 32)
• Subtopic copy goes here (size 24)
• Subtopic copy goes here (size 24)
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Click to add slide title (size 48)
Main topic 1 (size 32)
Subtopic copy goes here (size 24)
Subtopic copy goes here (size 24)
Main topic 2 (size 32)
Subtopic copy goes here (size 24)
Subtopic copy goes here (size 24)
Main topic 3 (size 32)
Subtopic copy goes here (size 24)
Subtopic copy goes here (size 24)
Main topic 1 (size 32)
Subtopic copy goes here (size 24)
Subtopic copy goes here (size 24)
Main topic 2 (size 32)
Subtopic copy goes here (size 24)
Subtopic copy goes here (size 24)
Main topic 3 (size 32)
Subtopic copy goes here (size 24)
Subtopic copy goes here (size 24)
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Click to add slide title (size 48)
• Main topic 1 (size 32)
• Subtopic copy goes here (size 24)
• Subtopic copy goes here (size 24)
• Main topic 2 (size 32)
• Subtopic copy goes here (size 24)
• Subtopic copy goes here (size 24)
• Main topic 3 (size 32)
• Subtopic copy goes here (size 24)
• Subtopic copy goes here (size 24)
• Main topic 1 (size 32)
• Subtopic copy goes here (size 24)
• Subtopic copy goes here (size 24)
• Main topic 2 (size 32)
• Subtopic copy goes here (size 24)
• Subtopic copy goes here (size 24)
• Main topic 3 (size 32)
• Subtopic copy goes here (size 24)
• Subtopic copy goes here (size 24)
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Click to add slide title (size 48)
Lorem ipsum dolor sit amet, error
possim abhorreant vix ne, ne mel
debitis iudicabit voluptatibus. Affert
timeam debitis no nam. Sint
democritum complectitur his an.
Ex mei admodum inciderint, cum cu
nihil commune atomorum. Vix ea
possit similique elaboraret.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Click to add slide title
(size 48)
Lorem ipsum dolor sit amet, error
possim abhorreant vix ne, ne mel
debitis iudicabit voluptatibus. Affert
timeam debitis no nam. Sint
democritum complectitur his an.
Ex mei admodum inciderint, cum cu
nihil commune atomorum. Vix ea
possit similique elaboraret.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Lorem ipsum dolor sit amet, error
possim abhorreant vix ne, ne mel
debitis iudicabit voluptatibus. Affert
timeam debitis no nam. Sint
democritum complectitur his an.
Ex mei admodum inciderint, cum cu
nihil commune atomorum. Vix ea
possit similique elaboraret.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Screenshot
Place a screenshot
behind the image of a
laptop or smartphone
to show it on a device.
1. Place the screenshot on
the slide.
2. Use the Alignment tools or
Selection Pane to place
the screenshot behind the
device. For more
information on how to use
the alignment tools and
Selection Pane, refer to
slides 58 and 59.
3. Resize and/or crop the
screenshot to fit
the device.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Using videos
To keep the file size small enough to upload to
the SRC, please wait until you get onsite to embed
videos in the speaker-ready room.
To embed a video, you can use the Embed_Video
slide layout. You can also add a video to a slide by
doing the following:
1. On the Insert tab, select Video.
2. Choose either an online video or a video you have
saved to your machine.
3. On the Video Tools menu, go to the Playback
options to make the video play full screen,
automatically or on-click, loop, hide when not
playing, or rewind after playing.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
How to apply the template
Apply the template to an
existing PowerPoint presentation
1. Save this template to your Desktop.
2. Open an existing PowerPoint file that you want
to update.
3. Select Design, scroll down, and select Browse
for Themes.
4. Browse to the template file (.potx) you saved to your
Desktop, and select Open.
5. Under Layout, right-click on the slide thumbnail, and
select the layout you want to use (Title_#Speaker and
Title_and_Content will be the most common).
6. Some things will shift when you do this. Adjust
accordingly to get the slide how you want it.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Theme colors
R: 0
G: 0
B: 0
R: 255
G: 255
B: 255
The PowerPoint palette for this template has
been built for you and is shown below.
Limit color usage to two colors per slide.
Choose one main color and one accent color
from the first four colors of the template
(limit use of yellow and green).
Do not use different shades of a color.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Text
Accessibility
Do not use dark colored
text on dark backgrounds or
light colored text on light
backgrounds.
Large text (above 24pt) and
icons must have a contrast
ratio of 3 or above.
Text Text
TextText Text
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Typography
Amazon Ember Light should be used for titles
Titles should be sentence case.
Hyperlink example Hyperlink example
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Typography continued
Select the appropriate font weight from the list of fonts.
These are all the usable fonts in the Amazon Ember family:
Amazon Ember
Amazon Ember Heavy
Amazon Ember Light
Amazon Ember Medium
Amazon Ember Thin
Amazon Ember Italic
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Grid/guidelines
To view the grid, in the View
tab, select Guides.
Or press Alt+F9. To turn it off,
press Alt+F9 again.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Quick Access Toolbar
PowerPoint has a toolbar populated with icons that
perform common tasks. This can be a great way to save
time, removing the need to repeatedly navigate through
menus.
You can customize your Quick Access Toolbar to add
buttons for alignment, formatting, and other
adjustments you’ll be making frequently. To do this, on
the far right of the Quick Access Toolbar, select the down
arrow, and select More Commands.
Here, you can browse dozens of different commands, add
and remove commands, and even export a Quick Access
Toolbar to open it on another machine.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Easy to use alignment tools
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Selection and formatting panes
To view an itemized list of objects on the slide
and their order of appearance, under the File
tab, in the Editing section, click Select, and
then click Selection Pane.
To view the formatting options pane for
objects on the slide, right-click the object,
and select Format Shape.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Animation options
The four options of animation are:
Entrance animations (green) which
describe the animations that bring
an object onto the slide.
Exit animations (red) which describe
the animations that take an object
off the slide.
Emphasis animations (yellow) which
affect objects but don’t bring them in
or move them off the slide.
Motion paths (line) move the object
around the slide. In addition to speed,
motion paths also have “easing,” which defines
how quickly the object begins or ends moving.
The following animations are acceptable to use:
Fade in/Fade out
Grow/shrink
Lines
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Animation pane
The Animation Pane
provides a detailed
view of all the
animations happening
within your slide.
This includes the slide element's
name, the duration of its
animation, and when the
animation will start.
To access the Animation Pane,
select the Animations tab, and
click Animation Pane.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Photography
1. The point of view should be top down, ground up,
or human sight line.
2. Color aligns with the overall AWS palette. Black and white
is not approved.
3. Don’t add gradients over photography.
4. Conceptual/abstract/pattern photos can be used but need to
reference characteristics of a product or service that doesn’t have
a specific physical metaphor (i.e., speed, security, AR/VR).
5. We do not show servers, databases, racks, or
infrastructure hardware.
6. Licensing images is often not as expensive as you may think for a
single use in a PowerPoint presentation. If you are looking for
unique images or photographs for your slides, try some of these
options to legally license use of the image:
Getty Images
Shutterstock
Creative Commons
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Table 1
Placeholder Placeholder
Placeholder Placeholder Placeholder
Placeholder Placeholder Placeholder
Placeholder Placeholder Placeholder
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Table 2
Placeholder Placeholder
Placeholder Placeholder Placeholder
Placeholder Placeholder Placeholder
Placeholder Placeholder Placeholder
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Table 3
Placeholder Placeholder Placeholder
Placeholder Placeholder Placeholder Placeholder
Placeholder Placeholder Placeholder Placeholder
Placeholder Placeholder Placeholder Placeholder
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Charts
0
0.5
1
1.5
2
2.5
3
3.5
4
4.5
5
Category 1 Category 2
Chart Title
Series 1 Series 2 Series 3
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
AWS product and resource icons
(Updates coming August 2018)
Download icons to use in
your presentation here:
https://aws.amazon.com/
architecture/icons/

More Related Content

What's hot

Building Alexa Skills - Floor28
Building Alexa Skills - Floor28Building Alexa Skills - Floor28
Building Alexa Skills - Floor28
Boaz Ziniman
 
Building Smart Home skills for Alexa
Building Smart Home skills for AlexaBuilding Smart Home skills for Alexa
Building Smart Home skills for Alexa
AWS Germany
 
Three Lessons from “Escape the Room” That Apply to Making Money with Your Ale...
Three Lessons from “Escape the Room” That Apply to Making Money with Your Ale...Three Lessons from “Escape the Room” That Apply to Making Money with Your Ale...
Three Lessons from “Escape the Room” That Apply to Making Money with Your Ale...
Amazon Web Services
 
From Idea to Customers: Developing Modern Cloud-Enabled Apps with AWS (MOB201...
From Idea to Customers: Developing Modern Cloud-Enabled Apps with AWS (MOB201...From Idea to Customers: Developing Modern Cloud-Enabled Apps with AWS (MOB201...
From Idea to Customers: Developing Modern Cloud-Enabled Apps with AWS (MOB201...
Amazon Web Services
 
APN-live-hk-opening
APN-live-hk-openingAPN-live-hk-opening
APN-live-hk-opening
Amazon Web Services
 
Real-Time Personalized Customer Experiences at Bonobos (RET203) - AWS re:Inve...
Real-Time Personalized Customer Experiences at Bonobos (RET203) - AWS re:Inve...Real-Time Personalized Customer Experiences at Bonobos (RET203) - AWS re:Inve...
Real-Time Personalized Customer Experiences at Bonobos (RET203) - AWS re:Inve...
Amazon Web Services
 
Alexa, Where's My Car? A Test Drive of the AWS Connected Vehicle Solution (AM...
Alexa, Where's My Car? A Test Drive of the AWS Connected Vehicle Solution (AM...Alexa, Where's My Car? A Test Drive of the AWS Connected Vehicle Solution (AM...
Alexa, Where's My Car? A Test Drive of the AWS Connected Vehicle Solution (AM...
Amazon Web Services
 
Working Backwards - Add Voice AI to Five Device Categories with Alexa (ALX329...
Working Backwards - Add Voice AI to Five Device Categories with Alexa (ALX329...Working Backwards - Add Voice AI to Five Device Categories with Alexa (ALX329...
Working Backwards - Add Voice AI to Five Device Categories with Alexa (ALX329...
Amazon Web Services
 
How Websites go Serverless - WebSummit Lisbon 2018
How Websites go Serverless - WebSummit Lisbon 2018How Websites go Serverless - WebSummit Lisbon 2018
How Websites go Serverless - WebSummit Lisbon 2018
Boaz Ziniman
 
AWS Startup Day Kyiv - AI/ML services for developers
AWS Startup Day Kyiv - AI/ML services for developersAWS Startup Day Kyiv - AI/ML services for developers
AWS Startup Day Kyiv - AI/ML services for developers
Amazon Web Services
 
Build Models for Aerial Images Using Amazon SageMaker (AIM334) - AWS re:Inven...
Build Models for Aerial Images Using Amazon SageMaker (AIM334) - AWS re:Inven...Build Models for Aerial Images Using Amazon SageMaker (AIM334) - AWS re:Inven...
Build Models for Aerial Images Using Amazon SageMaker (AIM334) - AWS re:Inven...
Amazon Web Services
 
Leadership Session: Developing Mobile & Web Apps on AWS (MOB202-L) - AWS re:I...
Leadership Session: Developing Mobile & Web Apps on AWS (MOB202-L) - AWS re:I...Leadership Session: Developing Mobile & Web Apps on AWS (MOB202-L) - AWS re:I...
Leadership Session: Developing Mobile & Web Apps on AWS (MOB202-L) - AWS re:I...
Amazon Web Services
 
Cloud Ops Engineer: A Day in the Life (ENT312-R1) - AWS re:Invent 2018
Cloud Ops Engineer: A Day in the Life (ENT312-R1) - AWS re:Invent 2018Cloud Ops Engineer: A Day in the Life (ENT312-R1) - AWS re:Invent 2018
Cloud Ops Engineer: A Day in the Life (ENT312-R1) - AWS re:Invent 2018
Amazon Web Services
 
NEW LAUNCH! Deploying and Managing Voice Skills in your Organization with Ale...
NEW LAUNCH! Deploying and Managing Voice Skills in your Organization with Ale...NEW LAUNCH! Deploying and Managing Voice Skills in your Organization with Ale...
NEW LAUNCH! Deploying and Managing Voice Skills in your Organization with Ale...
Amazon Web Services
 
Amazon Rekognition: Deep Learning-Based Image and Video Analysis
Amazon Rekognition: Deep Learning-Based Image and Video AnalysisAmazon Rekognition: Deep Learning-Based Image and Video Analysis
Amazon Rekognition: Deep Learning-Based Image and Video Analysis
Amazon Web Services
 
Build, Train, and Deploy ML Models Quickly and Easily with Amazon SageMaker, ...
Build, Train, and Deploy ML Models Quickly and Easily with Amazon SageMaker, ...Build, Train, and Deploy ML Models Quickly and Easily with Amazon SageMaker, ...
Build, Train, and Deploy ML Models Quickly and Easily with Amazon SageMaker, ...
Amazon Web Services
 
Automate for Efficiency with Amazon Transcribe and Amazon Translate - AWS Onl...
Automate for Efficiency with Amazon Transcribe and Amazon Translate - AWS Onl...Automate for Efficiency with Amazon Transcribe and Amazon Translate - AWS Onl...
Automate for Efficiency with Amazon Transcribe and Amazon Translate - AWS Onl...
Amazon Web Services
 
Create Smart and Interactive Apps with Intelligent Language Services on AWS (...
Create Smart and Interactive Apps with Intelligent Language Services on AWS (...Create Smart and Interactive Apps with Intelligent Language Services on AWS (...
Create Smart and Interactive Apps with Intelligent Language Services on AWS (...
Amazon Web Services
 
Sviluppare applicazioni voice-first con AWS e Amazon Alexa
Sviluppare applicazioni voice-first con AWS e Amazon AlexaSviluppare applicazioni voice-first con AWS e Amazon Alexa
Sviluppare applicazioni voice-first con AWS e Amazon Alexa
Amazon Web Services
 
Cheat your Way into the Cloud
Cheat your Way into the CloudCheat your Way into the Cloud
Cheat your Way into the Cloud
Amazon Web Services
 

What's hot (20)

Building Alexa Skills - Floor28
Building Alexa Skills - Floor28Building Alexa Skills - Floor28
Building Alexa Skills - Floor28
 
Building Smart Home skills for Alexa
Building Smart Home skills for AlexaBuilding Smart Home skills for Alexa
Building Smart Home skills for Alexa
 
Three Lessons from “Escape the Room” That Apply to Making Money with Your Ale...
Three Lessons from “Escape the Room” That Apply to Making Money with Your Ale...Three Lessons from “Escape the Room” That Apply to Making Money with Your Ale...
Three Lessons from “Escape the Room” That Apply to Making Money with Your Ale...
 
From Idea to Customers: Developing Modern Cloud-Enabled Apps with AWS (MOB201...
From Idea to Customers: Developing Modern Cloud-Enabled Apps with AWS (MOB201...From Idea to Customers: Developing Modern Cloud-Enabled Apps with AWS (MOB201...
From Idea to Customers: Developing Modern Cloud-Enabled Apps with AWS (MOB201...
 
APN-live-hk-opening
APN-live-hk-openingAPN-live-hk-opening
APN-live-hk-opening
 
Real-Time Personalized Customer Experiences at Bonobos (RET203) - AWS re:Inve...
Real-Time Personalized Customer Experiences at Bonobos (RET203) - AWS re:Inve...Real-Time Personalized Customer Experiences at Bonobos (RET203) - AWS re:Inve...
Real-Time Personalized Customer Experiences at Bonobos (RET203) - AWS re:Inve...
 
Alexa, Where's My Car? A Test Drive of the AWS Connected Vehicle Solution (AM...
Alexa, Where's My Car? A Test Drive of the AWS Connected Vehicle Solution (AM...Alexa, Where's My Car? A Test Drive of the AWS Connected Vehicle Solution (AM...
Alexa, Where's My Car? A Test Drive of the AWS Connected Vehicle Solution (AM...
 
Working Backwards - Add Voice AI to Five Device Categories with Alexa (ALX329...
Working Backwards - Add Voice AI to Five Device Categories with Alexa (ALX329...Working Backwards - Add Voice AI to Five Device Categories with Alexa (ALX329...
Working Backwards - Add Voice AI to Five Device Categories with Alexa (ALX329...
 
How Websites go Serverless - WebSummit Lisbon 2018
How Websites go Serverless - WebSummit Lisbon 2018How Websites go Serverless - WebSummit Lisbon 2018
How Websites go Serverless - WebSummit Lisbon 2018
 
AWS Startup Day Kyiv - AI/ML services for developers
AWS Startup Day Kyiv - AI/ML services for developersAWS Startup Day Kyiv - AI/ML services for developers
AWS Startup Day Kyiv - AI/ML services for developers
 
Build Models for Aerial Images Using Amazon SageMaker (AIM334) - AWS re:Inven...
Build Models for Aerial Images Using Amazon SageMaker (AIM334) - AWS re:Inven...Build Models for Aerial Images Using Amazon SageMaker (AIM334) - AWS re:Inven...
Build Models for Aerial Images Using Amazon SageMaker (AIM334) - AWS re:Inven...
 
Leadership Session: Developing Mobile & Web Apps on AWS (MOB202-L) - AWS re:I...
Leadership Session: Developing Mobile & Web Apps on AWS (MOB202-L) - AWS re:I...Leadership Session: Developing Mobile & Web Apps on AWS (MOB202-L) - AWS re:I...
Leadership Session: Developing Mobile & Web Apps on AWS (MOB202-L) - AWS re:I...
 
Cloud Ops Engineer: A Day in the Life (ENT312-R1) - AWS re:Invent 2018
Cloud Ops Engineer: A Day in the Life (ENT312-R1) - AWS re:Invent 2018Cloud Ops Engineer: A Day in the Life (ENT312-R1) - AWS re:Invent 2018
Cloud Ops Engineer: A Day in the Life (ENT312-R1) - AWS re:Invent 2018
 
NEW LAUNCH! Deploying and Managing Voice Skills in your Organization with Ale...
NEW LAUNCH! Deploying and Managing Voice Skills in your Organization with Ale...NEW LAUNCH! Deploying and Managing Voice Skills in your Organization with Ale...
NEW LAUNCH! Deploying and Managing Voice Skills in your Organization with Ale...
 
Amazon Rekognition: Deep Learning-Based Image and Video Analysis
Amazon Rekognition: Deep Learning-Based Image and Video AnalysisAmazon Rekognition: Deep Learning-Based Image and Video Analysis
Amazon Rekognition: Deep Learning-Based Image and Video Analysis
 
Build, Train, and Deploy ML Models Quickly and Easily with Amazon SageMaker, ...
Build, Train, and Deploy ML Models Quickly and Easily with Amazon SageMaker, ...Build, Train, and Deploy ML Models Quickly and Easily with Amazon SageMaker, ...
Build, Train, and Deploy ML Models Quickly and Easily with Amazon SageMaker, ...
 
Automate for Efficiency with Amazon Transcribe and Amazon Translate - AWS Onl...
Automate for Efficiency with Amazon Transcribe and Amazon Translate - AWS Onl...Automate for Efficiency with Amazon Transcribe and Amazon Translate - AWS Onl...
Automate for Efficiency with Amazon Transcribe and Amazon Translate - AWS Onl...
 
Create Smart and Interactive Apps with Intelligent Language Services on AWS (...
Create Smart and Interactive Apps with Intelligent Language Services on AWS (...Create Smart and Interactive Apps with Intelligent Language Services on AWS (...
Create Smart and Interactive Apps with Intelligent Language Services on AWS (...
 
Sviluppare applicazioni voice-first con AWS e Amazon Alexa
Sviluppare applicazioni voice-first con AWS e Amazon AlexaSviluppare applicazioni voice-first con AWS e Amazon Alexa
Sviluppare applicazioni voice-first con AWS e Amazon Alexa
 
Cheat your Way into the Cloud
Cheat your Way into the CloudCheat your Way into the Cloud
Cheat your Way into the Cloud
 

Similar to Make Money with Alexa Skills (ALX402-R1) - AWS re:Invent 2018

Kotlin과 AWS와 함께라면 육군훈련소도 외롭지 않아::강성훈::AWS Summit Seoul 2018
Kotlin과 AWS와 함께라면 육군훈련소도 외롭지 않아::강성훈::AWS Summit Seoul 2018Kotlin과 AWS와 함께라면 육군훈련소도 외롭지 않아::강성훈::AWS Summit Seoul 2018
Kotlin과 AWS와 함께라면 육군훈련소도 외롭지 않아::강성훈::AWS Summit Seoul 2018
Amazon Web Services Korea
 
Kotlin, AWS와 함께라면 육군훈련소도 외롭지 않아
Kotlin, AWS와 함께라면 육군훈련소도 외롭지 않아Kotlin, AWS와 함께라면 육군훈련소도 외롭지 않아
Kotlin, AWS와 함께라면 육군훈련소도 외롭지 않아
Sunghoon Kang
 
How to Automate Security Learning at Scale (ANT335-S) - AWS re:Invent 2018
How to Automate Security Learning at Scale (ANT335-S) - AWS re:Invent 2018How to Automate Security Learning at Scale (ANT335-S) - AWS re:Invent 2018
How to Automate Security Learning at Scale (ANT335-S) - AWS re:Invent 2018
Amazon Web Services
 
マイクロサービスを AWS サーバレス&コンテナで実装する方法
マイクロサービスを AWS サーバレス&コンテナで実装する方法マイクロサービスを AWS サーバレス&コンテナで実装する方法
マイクロサービスを AWS サーバレス&コンテナで実装する方法
崇之 清水
 
What IT Transformation Really Means for the Enterprise
What IT Transformation Really Means for the EnterpriseWhat IT Transformation Really Means for the Enterprise
What IT Transformation Really Means for the Enterprise
Tom Laszewski
 
2018 AWS DevDay Seoul community track - 데이터센터 1도 모르는 개발자가 MSA를 만났을 때
2018 AWS DevDay Seoul community track - 데이터센터 1도 모르는 개발자가 MSA를 만났을 때2018 AWS DevDay Seoul community track - 데이터센터 1도 모르는 개발자가 MSA를 만났을 때
2018 AWS DevDay Seoul community track - 데이터센터 1도 모르는 개발자가 MSA를 만났을 때
주은 안
 
Zendesk: Building a World-Class Cloud Center of Excellence (ENT309-S) - AWS r...
Zendesk: Building a World-Class Cloud Center of Excellence (ENT309-S) - AWS r...Zendesk: Building a World-Class Cloud Center of Excellence (ENT309-S) - AWS r...
Zendesk: Building a World-Class Cloud Center of Excellence (ENT309-S) - AWS r...
Amazon Web Services
 
Advanced Serverless Data Processing (GPSWS406) - AWS re:Invent 2018
Advanced Serverless Data Processing (GPSWS406) - AWS re:Invent 2018Advanced Serverless Data Processing (GPSWS406) - AWS re:Invent 2018
Advanced Serverless Data Processing (GPSWS406) - AWS re:Invent 2018
Amazon Web Services
 
DeepLens: Machine Learning & Chicago Hot Dogs
DeepLens: Machine Learning & Chicago Hot Dogs DeepLens: Machine Learning & Chicago Hot Dogs
DeepLens: Machine Learning & Chicago Hot Dogs
AWS Chicago
 
Globalizing Player Accounts at Riot Games While Maintaining Availability (ARC...
Globalizing Player Accounts at Riot Games While Maintaining Availability (ARC...Globalizing Player Accounts at Riot Games While Maintaining Availability (ARC...
Globalizing Player Accounts at Riot Games While Maintaining Availability (ARC...
Amazon Web Services
 
Run Production Workloads on Spot, Save up to 90% (CMP306-R1) - AWS re:Invent ...
Run Production Workloads on Spot, Save up to 90% (CMP306-R1) - AWS re:Invent ...Run Production Workloads on Spot, Save up to 90% (CMP306-R1) - AWS re:Invent ...
Run Production Workloads on Spot, Save up to 90% (CMP306-R1) - AWS re:Invent ...
Amazon Web Services
 
데이터센터 1도모르는 개발자가 마이크로서비스를 만났을때 (안주은, MyMusicTaste) :: AWS DevDay 2018
데이터센터 1도모르는 개발자가 마이크로서비스를 만났을때 (안주은, MyMusicTaste) :: AWS DevDay 2018 데이터센터 1도모르는 개발자가 마이크로서비스를 만났을때 (안주은, MyMusicTaste) :: AWS DevDay 2018
데이터센터 1도모르는 개발자가 마이크로서비스를 만났을때 (안주은, MyMusicTaste) :: AWS DevDay 2018
Amazon Web Services Korea
 
Introduction to AI
Introduction to AIIntroduction to AI
Introduction to AI
Boaz Ziniman
 
[NEW LAUNCH!] Introduction to AWS Global Accelerator (NET330) - AWS re:Invent...
[NEW LAUNCH!] Introduction to AWS Global Accelerator (NET330) - AWS re:Invent...[NEW LAUNCH!] Introduction to AWS Global Accelerator (NET330) - AWS re:Invent...
[NEW LAUNCH!] Introduction to AWS Global Accelerator (NET330) - AWS re:Invent...
Amazon Web Services
 
Using AI for real-life data enrichment - Tel Aviv Summit 2018
Using AI for real-life data enrichment - Tel Aviv Summit 2018Using AI for real-life data enrichment - Tel Aviv Summit 2018
Using AI for real-life data enrichment - Tel Aviv Summit 2018
Amazon Web Services
 
AWS 인공지능 서비스와 서버리스 서비스를 이용한 동영상 분석 서비스 구축하기 (김현수/황윤상, AWS 솔루션즈 아키텍트) :: AWS D...
AWS 인공지능 서비스와 서버리스 서비스를 이용한 동영상 분석 서비스 구축하기 (김현수/황윤상, AWS 솔루션즈 아키텍트) :: AWS D...AWS 인공지능 서비스와 서버리스 서비스를 이용한 동영상 분석 서비스 구축하기 (김현수/황윤상, AWS 솔루션즈 아키텍트) :: AWS D...
AWS 인공지능 서비스와 서버리스 서비스를 이용한 동영상 분석 서비스 구축하기 (김현수/황윤상, AWS 솔루션즈 아키텍트) :: AWS D...
Amazon Web Services Korea
 
Choosing the Right Messaging Service for Your Distributed App (API305) - AWS ...
Choosing the Right Messaging Service for Your Distributed App (API305) - AWS ...Choosing the Right Messaging Service for Your Distributed App (API305) - AWS ...
Choosing the Right Messaging Service for Your Distributed App (API305) - AWS ...
Amazon Web Services
 
Store of the Future: Smart Shopping
Store of the Future: Smart Shopping Store of the Future: Smart Shopping
Store of the Future: Smart Shopping
Amazon Web Services
 
The future of AI - IDC Herzelia
The future of AI - IDC HerzeliaThe future of AI - IDC Herzelia
The future of AI - IDC Herzelia
Boaz Ziniman
 
AWS - Store of the Future - Retail innovation with the AWS cloud
AWS - Store of the Future - Retail innovation with the AWS cloudAWS - Store of the Future - Retail innovation with the AWS cloud
AWS - Store of the Future - Retail innovation with the AWS cloud
tobywknight
 

Similar to Make Money with Alexa Skills (ALX402-R1) - AWS re:Invent 2018 (20)

Kotlin과 AWS와 함께라면 육군훈련소도 외롭지 않아::강성훈::AWS Summit Seoul 2018
Kotlin과 AWS와 함께라면 육군훈련소도 외롭지 않아::강성훈::AWS Summit Seoul 2018Kotlin과 AWS와 함께라면 육군훈련소도 외롭지 않아::강성훈::AWS Summit Seoul 2018
Kotlin과 AWS와 함께라면 육군훈련소도 외롭지 않아::강성훈::AWS Summit Seoul 2018
 
Kotlin, AWS와 함께라면 육군훈련소도 외롭지 않아
Kotlin, AWS와 함께라면 육군훈련소도 외롭지 않아Kotlin, AWS와 함께라면 육군훈련소도 외롭지 않아
Kotlin, AWS와 함께라면 육군훈련소도 외롭지 않아
 
How to Automate Security Learning at Scale (ANT335-S) - AWS re:Invent 2018
How to Automate Security Learning at Scale (ANT335-S) - AWS re:Invent 2018How to Automate Security Learning at Scale (ANT335-S) - AWS re:Invent 2018
How to Automate Security Learning at Scale (ANT335-S) - AWS re:Invent 2018
 
マイクロサービスを AWS サーバレス&コンテナで実装する方法
マイクロサービスを AWS サーバレス&コンテナで実装する方法マイクロサービスを AWS サーバレス&コンテナで実装する方法
マイクロサービスを AWS サーバレス&コンテナで実装する方法
 
What IT Transformation Really Means for the Enterprise
What IT Transformation Really Means for the EnterpriseWhat IT Transformation Really Means for the Enterprise
What IT Transformation Really Means for the Enterprise
 
2018 AWS DevDay Seoul community track - 데이터센터 1도 모르는 개발자가 MSA를 만났을 때
2018 AWS DevDay Seoul community track - 데이터센터 1도 모르는 개발자가 MSA를 만났을 때2018 AWS DevDay Seoul community track - 데이터센터 1도 모르는 개발자가 MSA를 만났을 때
2018 AWS DevDay Seoul community track - 데이터센터 1도 모르는 개발자가 MSA를 만났을 때
 
Zendesk: Building a World-Class Cloud Center of Excellence (ENT309-S) - AWS r...
Zendesk: Building a World-Class Cloud Center of Excellence (ENT309-S) - AWS r...Zendesk: Building a World-Class Cloud Center of Excellence (ENT309-S) - AWS r...
Zendesk: Building a World-Class Cloud Center of Excellence (ENT309-S) - AWS r...
 
Advanced Serverless Data Processing (GPSWS406) - AWS re:Invent 2018
Advanced Serverless Data Processing (GPSWS406) - AWS re:Invent 2018Advanced Serverless Data Processing (GPSWS406) - AWS re:Invent 2018
Advanced Serverless Data Processing (GPSWS406) - AWS re:Invent 2018
 
DeepLens: Machine Learning & Chicago Hot Dogs
DeepLens: Machine Learning & Chicago Hot Dogs DeepLens: Machine Learning & Chicago Hot Dogs
DeepLens: Machine Learning & Chicago Hot Dogs
 
Globalizing Player Accounts at Riot Games While Maintaining Availability (ARC...
Globalizing Player Accounts at Riot Games While Maintaining Availability (ARC...Globalizing Player Accounts at Riot Games While Maintaining Availability (ARC...
Globalizing Player Accounts at Riot Games While Maintaining Availability (ARC...
 
Run Production Workloads on Spot, Save up to 90% (CMP306-R1) - AWS re:Invent ...
Run Production Workloads on Spot, Save up to 90% (CMP306-R1) - AWS re:Invent ...Run Production Workloads on Spot, Save up to 90% (CMP306-R1) - AWS re:Invent ...
Run Production Workloads on Spot, Save up to 90% (CMP306-R1) - AWS re:Invent ...
 
데이터센터 1도모르는 개발자가 마이크로서비스를 만났을때 (안주은, MyMusicTaste) :: AWS DevDay 2018
데이터센터 1도모르는 개발자가 마이크로서비스를 만났을때 (안주은, MyMusicTaste) :: AWS DevDay 2018 데이터센터 1도모르는 개발자가 마이크로서비스를 만났을때 (안주은, MyMusicTaste) :: AWS DevDay 2018
데이터센터 1도모르는 개발자가 마이크로서비스를 만났을때 (안주은, MyMusicTaste) :: AWS DevDay 2018
 
Introduction to AI
Introduction to AIIntroduction to AI
Introduction to AI
 
[NEW LAUNCH!] Introduction to AWS Global Accelerator (NET330) - AWS re:Invent...
[NEW LAUNCH!] Introduction to AWS Global Accelerator (NET330) - AWS re:Invent...[NEW LAUNCH!] Introduction to AWS Global Accelerator (NET330) - AWS re:Invent...
[NEW LAUNCH!] Introduction to AWS Global Accelerator (NET330) - AWS re:Invent...
 
Using AI for real-life data enrichment - Tel Aviv Summit 2018
Using AI for real-life data enrichment - Tel Aviv Summit 2018Using AI for real-life data enrichment - Tel Aviv Summit 2018
Using AI for real-life data enrichment - Tel Aviv Summit 2018
 
AWS 인공지능 서비스와 서버리스 서비스를 이용한 동영상 분석 서비스 구축하기 (김현수/황윤상, AWS 솔루션즈 아키텍트) :: AWS D...
AWS 인공지능 서비스와 서버리스 서비스를 이용한 동영상 분석 서비스 구축하기 (김현수/황윤상, AWS 솔루션즈 아키텍트) :: AWS D...AWS 인공지능 서비스와 서버리스 서비스를 이용한 동영상 분석 서비스 구축하기 (김현수/황윤상, AWS 솔루션즈 아키텍트) :: AWS D...
AWS 인공지능 서비스와 서버리스 서비스를 이용한 동영상 분석 서비스 구축하기 (김현수/황윤상, AWS 솔루션즈 아키텍트) :: AWS D...
 
Choosing the Right Messaging Service for Your Distributed App (API305) - AWS ...
Choosing the Right Messaging Service for Your Distributed App (API305) - AWS ...Choosing the Right Messaging Service for Your Distributed App (API305) - AWS ...
Choosing the Right Messaging Service for Your Distributed App (API305) - AWS ...
 
Store of the Future: Smart Shopping
Store of the Future: Smart Shopping Store of the Future: Smart Shopping
Store of the Future: Smart Shopping
 
The future of AI - IDC Herzelia
The future of AI - IDC HerzeliaThe future of AI - IDC Herzelia
The future of AI - IDC Herzelia
 
AWS - Store of the Future - Retail innovation with the AWS cloud
AWS - Store of the Future - Retail innovation with the AWS cloudAWS - Store of the Future - Retail innovation with the AWS cloud
AWS - Store of the Future - Retail innovation with the AWS cloud
 

More from Amazon Web Services

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

More from Amazon Web Services (20)

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

Make Money with Alexa Skills (ALX402-R1) - AWS re:Invent 2018

  • 1.
  • 2. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Making Money With Alexa Skills Jeff Blankenburg Senior Alexa Evangelist Amazon Alexa A L X 4 0 2 - R 1
  • 3.
  • 4.
  • 5. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 6. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 7. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 8. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 9. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 10. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 11. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. One-Time Purchases
  • 12. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 13. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Subscriptions
  • 14. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 15. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Consumables
  • 16. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 17. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. In-Skill Purchases GRAPHIC THAT ILLUSTRATES PHYSICAL GOODS/SERVICES VS. DIGITAL PRODUCTS.
  • 18. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. In-Skill Purchases SAME GRAPHIC, but highlighting that the rest of the presentation will focus on digital goods.
  • 19. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 20. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. In-Skill Purchases
  • 21. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 22. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 23. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 24. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 25. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 26. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. In-Skill Purchases Subscriptions and one-time purchases $0.99 - $99.99 Consumables $0.99 to $9.99
  • 27. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 28. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. In-Skill Purchases Your skill shouldn’t mention the price. Alexa will do that!
  • 29. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. In-Skill Purchases If you want to change the list price, you will need to re-certify your skill.
  • 30. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 31. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. ISP Graphic
  • 32. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 33. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 34. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 35. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 36. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 37. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 38.
  • 39. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 40. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 41. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Sending An Upsell Request { 'type': 'Connections.SendRequest’, 'name': 'Upsell’, 'payload': { 'InSkillProduct': { 'productId': hintpack[0].productId }, 'upsellMessage': "You don't currently have any hints available. Would you like to know more about the five hint pack?" }, 'token': 'correlationToken' }
  • 42. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Sending A Buy Request { 'type': 'Connections.SendRequest’, 'name': 'Buy’, 'payload': { 'InSkillProduct': { 'productId': hintpack[0].productId } }, 'token': 'correlationToken' }
  • 43. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Sending A Cancel Request { 'type': 'Connections.SendRequest’, 'name': ‘Cancel’, 'payload': { 'InSkillProduct': { 'productId': hintpack[0].productId } }, 'token': 'correlationToken' }
  • 44. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Receiving A Response - Declined "request": { "type": "Connections.Response", "requestId": "amzn1.echo-api.request.c5d143cd-e8fd-42cf-bfed-1a4a5b717bfc", "timestamp": "2018-09-20T14:06:50Z", "locale": "en-US", "status": { "code": "200", "message": "OK" }, "name": "Buy", "payload": { "purchaseResult": "DECLINED", "productId": "amzn1.adg.product.3c9467da-807c-4111-809d-03ec7b8d7726" }, "token": "correlationToken" }
  • 45. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Receiving A Response - Accepted "request": { "type": "Connections.Response", "requestId": "amzn1.echo-api.request.c5d143cd-e8fd-42cf-bfed-1a4a5b717bfc", "timestamp": "2018-09-20T14:06:50Z", "locale": "en-US", "status": { "code": "200", "message": "OK" }, "name": ”Upsell", "payload": { "purchaseResult": ”ACCEPTED", "productId": "amzn1.adg.product.3c9467da-807c-4111-809d-03ec7b8d7726" }, "token": "correlationToken" }
  • 46. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Receiving An Buy Response - Error "request": { "type": "Connections.Response", "requestId": "amzn1.echo-api.request.c5d143cd-e8fd-42cf-bfed-1a4a5b717bfc", "timestamp": "2018-09-20T14:06:50Z", "locale": "en-US", "status": { "code": "200", "message": "OK" }, "name": "Buy", "payload": { "purchaseResult": ”ERROR", "productId": "amzn1.adg.product.3c9467da-807c-4111-809d-03ec7b8d7726" }, "token": "correlationToken" }
  • 47. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 48. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Offer a Buy Intent
  • 49. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Don’t Be Annoying About It
  • 50. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Persist, Persist, Persist
  • 51. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Create an Inventory Checker
  • 52. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 53. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 54. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 55. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 56. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Help Should Know Your Purchases
  • 57. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. When it makes sense, combine your logic
  • 58. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 59. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 60. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. In-Skill Purchases
  • 61. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 62. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Everything You Need Is Right Here! http://alexa.design/isp
  • 63. Thank you! © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Jeff Blankenburg @jeffblankenburg jeffblan@amazon.com Deep Dive into Alexa's In-Skill Purchase API ALX404-R1 Wednesday, 11:30am | MGM Grand Learn from the Field: Best Practices for Making Money with Alexa Skills AL302 Wednesday, 12:15pm | Venetian
  • 64. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 65. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 66. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 67. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 68. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Breakout repeats Day of Week, Month Day Session Title Time – Time | Location Day of Week, Month Day Session Title Time – Time | Location Day of Week, Month Day Session Title Time – Time | Location
  • 69. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Related breakouts Day of Week, Month Day Session Title Time – Time | Location Day of Week, Month Day Session Title Time – Time | Location Day of Week, Month Day Session Title Time – Time | Location
  • 70. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Sample code slide var pd = require('pretty-data').pd; var xml_pp = pd.xml(data); var xml_min = pd.xmlmin(data [,true]); var json_pp = pd.json(data); var json_min = pd.jsonmin(data); var css_pp = pd.css(data); var css_min = pd.cssmin(data [, true]); var sql_pp = pd.sql(data);
  • 71. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Sample code slide var pd = require('pretty-data').pd; var xml_pp = pd.xml(data); var xml_min = pd.xmlmin(data [,true]); var json_pp = pd.json(data); var json_min = pd.jsonmin(data); var css_pp = pd.css(data); var css_min = pd.cssmin(data [, true]); var sql_pp = pd.sql(data); var pd = require('pretty-data').pd; var xml_pp = pd.xml(data); var xml_min = pd.xmlmin(data [,true]); var json_pp = pd.json(data); var json_min = pd.jsonmin(data); var css_pp = pd.css(data); var css_min = pd.cssmin(data [, true]); var sql_pp = pd.sql(data);
  • 72. “Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas porttitor congue massa.” Quotation Author Title
  • 73. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Click to add slide title (size 48)
  • 74. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Click to add slide title (size 48) Main topic 1 (size 32) Subtopic copy goes here (size 24) Subtopic copy goes here (size 24) Main topic 2 (size 32) Subtopic copy goes here (size 24) Subtopic copy goes here (size 24) Main topic 3 (size 32) Subtopic copy goes here (size 24) Subtopic copy goes here (size 24)
  • 75. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Click to add slide title (size 48) • Main topic 1 (size 32) • Subtopic copy goes here (size 24) • Subtopic copy goes here (size 24) • Main topic 2 (size 32) • Subtopic copy goes here (size 24) • Subtopic copy goes here (size 24) • Main topic 3 (size 32) • Subtopic copy goes here (size 24) • Subtopic copy goes here (size 24)
  • 76. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Click to add slide title (size 48) Main topic 1 (size 32) Subtopic copy goes here (size 24) Subtopic copy goes here (size 24) Main topic 2 (size 32) Subtopic copy goes here (size 24) Subtopic copy goes here (size 24) Main topic 3 (size 32) Subtopic copy goes here (size 24) Subtopic copy goes here (size 24) Main topic 1 (size 32) Subtopic copy goes here (size 24) Subtopic copy goes here (size 24) Main topic 2 (size 32) Subtopic copy goes here (size 24) Subtopic copy goes here (size 24) Main topic 3 (size 32) Subtopic copy goes here (size 24) Subtopic copy goes here (size 24)
  • 77. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Click to add slide title (size 48) • Main topic 1 (size 32) • Subtopic copy goes here (size 24) • Subtopic copy goes here (size 24) • Main topic 2 (size 32) • Subtopic copy goes here (size 24) • Subtopic copy goes here (size 24) • Main topic 3 (size 32) • Subtopic copy goes here (size 24) • Subtopic copy goes here (size 24) • Main topic 1 (size 32) • Subtopic copy goes here (size 24) • Subtopic copy goes here (size 24) • Main topic 2 (size 32) • Subtopic copy goes here (size 24) • Subtopic copy goes here (size 24) • Main topic 3 (size 32) • Subtopic copy goes here (size 24) • Subtopic copy goes here (size 24)
  • 78. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Click to add slide title (size 48) Lorem ipsum dolor sit amet, error possim abhorreant vix ne, ne mel debitis iudicabit voluptatibus. Affert timeam debitis no nam. Sint democritum complectitur his an. Ex mei admodum inciderint, cum cu nihil commune atomorum. Vix ea possit similique elaboraret.
  • 79. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Click to add slide title (size 48) Lorem ipsum dolor sit amet, error possim abhorreant vix ne, ne mel debitis iudicabit voluptatibus. Affert timeam debitis no nam. Sint democritum complectitur his an. Ex mei admodum inciderint, cum cu nihil commune atomorum. Vix ea possit similique elaboraret.
  • 80. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Lorem ipsum dolor sit amet, error possim abhorreant vix ne, ne mel debitis iudicabit voluptatibus. Affert timeam debitis no nam. Sint democritum complectitur his an. Ex mei admodum inciderint, cum cu nihil commune atomorum. Vix ea possit similique elaboraret.
  • 81.
  • 82. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Screenshot Place a screenshot behind the image of a laptop or smartphone to show it on a device. 1. Place the screenshot on the slide. 2. Use the Alignment tools or Selection Pane to place the screenshot behind the device. For more information on how to use the alignment tools and Selection Pane, refer to slides 58 and 59. 3. Resize and/or crop the screenshot to fit the device.
  • 83. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Using videos To keep the file size small enough to upload to the SRC, please wait until you get onsite to embed videos in the speaker-ready room. To embed a video, you can use the Embed_Video slide layout. You can also add a video to a slide by doing the following: 1. On the Insert tab, select Video. 2. Choose either an online video or a video you have saved to your machine. 3. On the Video Tools menu, go to the Playback options to make the video play full screen, automatically or on-click, loop, hide when not playing, or rewind after playing.
  • 84. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. How to apply the template Apply the template to an existing PowerPoint presentation 1. Save this template to your Desktop. 2. Open an existing PowerPoint file that you want to update. 3. Select Design, scroll down, and select Browse for Themes. 4. Browse to the template file (.potx) you saved to your Desktop, and select Open. 5. Under Layout, right-click on the slide thumbnail, and select the layout you want to use (Title_#Speaker and Title_and_Content will be the most common). 6. Some things will shift when you do this. Adjust accordingly to get the slide how you want it.
  • 85. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Theme colors R: 0 G: 0 B: 0 R: 255 G: 255 B: 255 The PowerPoint palette for this template has been built for you and is shown below. Limit color usage to two colors per slide. Choose one main color and one accent color from the first four colors of the template (limit use of yellow and green). Do not use different shades of a color.
  • 86. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Text Accessibility Do not use dark colored text on dark backgrounds or light colored text on light backgrounds. Large text (above 24pt) and icons must have a contrast ratio of 3 or above. Text Text TextText Text
  • 87. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Typography Amazon Ember Light should be used for titles Titles should be sentence case. Hyperlink example Hyperlink example
  • 88. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Typography continued Select the appropriate font weight from the list of fonts. These are all the usable fonts in the Amazon Ember family: Amazon Ember Amazon Ember Heavy Amazon Ember Light Amazon Ember Medium Amazon Ember Thin Amazon Ember Italic
  • 89. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Grid/guidelines To view the grid, in the View tab, select Guides. Or press Alt+F9. To turn it off, press Alt+F9 again.
  • 90. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Quick Access Toolbar PowerPoint has a toolbar populated with icons that perform common tasks. This can be a great way to save time, removing the need to repeatedly navigate through menus. You can customize your Quick Access Toolbar to add buttons for alignment, formatting, and other adjustments you’ll be making frequently. To do this, on the far right of the Quick Access Toolbar, select the down arrow, and select More Commands. Here, you can browse dozens of different commands, add and remove commands, and even export a Quick Access Toolbar to open it on another machine.
  • 91. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Easy to use alignment tools
  • 92. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Selection and formatting panes To view an itemized list of objects on the slide and their order of appearance, under the File tab, in the Editing section, click Select, and then click Selection Pane. To view the formatting options pane for objects on the slide, right-click the object, and select Format Shape.
  • 93. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Animation options The four options of animation are: Entrance animations (green) which describe the animations that bring an object onto the slide. Exit animations (red) which describe the animations that take an object off the slide. Emphasis animations (yellow) which affect objects but don’t bring them in or move them off the slide. Motion paths (line) move the object around the slide. In addition to speed, motion paths also have “easing,” which defines how quickly the object begins or ends moving. The following animations are acceptable to use: Fade in/Fade out Grow/shrink Lines
  • 94. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Animation pane The Animation Pane provides a detailed view of all the animations happening within your slide. This includes the slide element's name, the duration of its animation, and when the animation will start. To access the Animation Pane, select the Animations tab, and click Animation Pane.
  • 95. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Photography 1. The point of view should be top down, ground up, or human sight line. 2. Color aligns with the overall AWS palette. Black and white is not approved. 3. Don’t add gradients over photography. 4. Conceptual/abstract/pattern photos can be used but need to reference characteristics of a product or service that doesn’t have a specific physical metaphor (i.e., speed, security, AR/VR). 5. We do not show servers, databases, racks, or infrastructure hardware. 6. Licensing images is often not as expensive as you may think for a single use in a PowerPoint presentation. If you are looking for unique images or photographs for your slides, try some of these options to legally license use of the image: Getty Images Shutterstock Creative Commons
  • 96. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Table 1 Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder
  • 97. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Table 2 Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder
  • 98. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Table 3 Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder Placeholder
  • 99. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Charts 0 0.5 1 1.5 2 2.5 3 3.5 4 4.5 5 Category 1 Category 2 Chart Title Series 1 Series 2 Series 3
  • 100. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. AWS product and resource icons (Updates coming August 2018) Download icons to use in your presentation here: https://aws.amazon.com/ architecture/icons/