SlideShare a Scribd company logo
1 of 46
Download to read offline
August 1st 2018
#73PRESENTS
Sponsors
What’s On Tonight
6:00 pm
1. AWS Rekognition
“Automating Video Editing with Amazon Rekognition” - John Rotenstein
6:20 pm
2. CloudHealth
“Managing Cost through Reservation Management” - Richard Economides
6:40 pm
Break
Have some pizza & beer, on us!
7:20 pm
3. PagerDuty
“Harness the noise, Evolve with confidence” - David Ridge
7:40 pm Networking
Presentation 1
John Rotenstein
Technology Consultant
“Automated Video Editing with Amazon Rekognition”
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
John Rotenstein (jorote@amazon.com)
Technical Trainer, Amazon Web Services
Automated Video Editing with
Amazon Rekognition
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Three examples of Amazon Rekognition with…
Still Images Video Files Streaming
Video
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
1. Detecting faces in still images
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Loop: Capture an image & draw rectangles
while(True):
# Capture frame
frame = capture.read()...
# Resize image for faster rekognition
image = capture.resize(frame, 0.15, ...)
# Detect faces in image
faces = rekognition.detect_faces(Image={'Bytes':image}, ...)
# Draw rectangle around faces
for face in faces['FaceDetails']:
is_smiling = face['Smile']['Value']
draw_rectangle(image, face['BoundingBox'], is_smiling)
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Attributes returned by DetectFaces()
{
"FaceDetails": [ {
"AgeRange": {"High"..."Low"...},
"Beard": {...},
"BoundingBox": {"Height".."Left".."Top".."Width"..},
"Eyeglasses": {...},
"EyesOpen": {...},
"Gender": {...},
"MouthOpen": {...},
"Mustache": {...},
"Smile": {...},
"Sunglasses": {...}
] }
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
2. Using Amazon Rekognition on Video Files
Find a person,
make a video of
just them
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Create a Collection & Load Faces
$ aws rekognition create-collection
--collection-id trainers
$ aws rekognition index-faces
--collection-id trainers
--image "S3Object={Bucket=mybucket,Name=john.jpg}"
--external-image-id John
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Search for faces
$ aws rekognition start-face-search
--video "S3Object={Bucket=...,Name=trainers.mp4}”
--collection-id trainers
$ aws rekognition get-face-search --job-id...
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
DetectFaces() returns Timestamps and Faces
{ "Persons": [
{
"Timestamp": 7360,
"FaceMatches": [
{
"Face": {
"ExternalImageId": "John",
"Confidence": 99.99750518798828 ...}
}
],
},
{
"Timestamp": 7560,
...
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Clip Stitching with Amazon Elastic Transcoder
Timestamps:
[99800, 99840, 100000, 100040, ...]
Convert into individual scene start/end times:
[(99800, 101480), (127520, 131760), ...]
Convert into clips for Amazon Elastic Transcoder:
[
{'Key': 'trainers.mp4',
'TimeSpan': {'StartTime': '99.8', 'Duration': '1.68'}},
{'Key': 'trainers.mp4',
'TimeSpan': {StartTime': '127.52’, 'Duration': '4.24'}},
...
]
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Result:
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
3. Open a door with your face (Rekognition Streaming)
+ =
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Architecture diagram
Live Camera
Amazon Kinesis
Video Streams
Amazon Rekognition
Video
Face collection
1. Camera-captured video
streams are processed by
Kinesis Video Streams
2. Rekognition Video
analyses the video and
searches faces on screen
against a collection of
millions of faces
IoT thing
lightbulb
AWS Lambda Amazon Kinesis
Streams
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Thank You
John Rotenstein
jorote@amazon.com
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Want to Know More?
Talk to an AWS Team Member
Presentation 2
Richard Economides
Technology Consultant
“Managing Cost through Reservation Management”
Cloud Service Management
Modeling and Managing Reservations
Richard Economides
reconomides@cloudhealthtech.com
www.linkedin.com/in/richard-economides-50764622/
2 © 2018 CLOUDHEALTH
®
TECHNOLOGIES INC.
VisibilityOptimisationGovernance
Define tagging taxonomy &
reporting requirements
Initial Cost & usage reporting
Rightsizing information
gathering & discovery
Wasted cost analysis
(identification)
Define financial management
policies
Phase 1
Onboarding
Reporting on RI utilization
Trending and forecast analysis
Rightsizing baselining &
Analysis (EC2 & EBS)
Reserved instance
procurement
Configuration policies
(Tagging compliance)
Operational management
policies (identify and terminate
zombie infrastructure)
Phase 2
Optimisations
Financial reporting (chargeback
& Budget tracking)
Container cost analysis and
showback
Rightsizing business workflow
On-going RI analysis and
procurement
Data Centre migration
Notify on Budget and cost
variance
Introduce smart workload
scheduling
Phase 3
Self Governing Cloud
Defining a Cost Optimisation Strategy
3 © 2018 CLOUDHEALTH
®
TECHNOLOGIES INC.
Customer Success Stories
CloudHealth Reservation Management
“We manage a fleet of RIs worth millions; one
CloudHealth modification helped save several
thousand dollars in a week. Per year, I’d say
we’re saving hundreds of thousands.”
I have a policy setup that sends an email every
morning showing me which RIs aren’t being
utilised properly. We only use Convertible
Reservations, and this email triggers me to log in to
AWS and make an exchange for a different instance
type.
— Charmaine Honeycutt,
Systems Administrator
“
“
“
“
— Brent Strong, Manager of
Cloud Engineering & Operations
4 © 2018 CLOUDHEALTH
®
TECHNOLOGIES INC.
• On-demand hourly discount
• Three purchasing options: All Upfront, Partial Upfront, No Upfront
• 1 or 3 year terms
• Can be modified in
limited ways
Think Vouchers - Not Instances
What Are EC2 Reserved Instances?
Offer Type Commitment Discount Range
No Upfront 1 Year 27%–50%
Partial Upfront 1 Year 32%–53%
All Upfront 1 Year 34%–53%
No Upfront 3 Year 32%-55%
Partial Upfront 3 Year 38%-74%
All Upfront 3 Year 38%-75%
5 © 2018 CLOUDHEALTH
®
TECHNOLOGIES INC.
When to Use Standard vs Convertible Reservations
Standard Reservations Convertible Reservations
• When you want the biggest possible
discount on reservations, but in exchange
are willing to accept less flexibility in
changes
• When you only want to make a one year
commitment
• When you are willing to pay slightly more to
have significantly more flexibility in changes
to Reservations
• When you are willing to make a 3 year
commitment
6 © 2018 CLOUDHEALTH
®
TECHNOLOGIES INC.
• Understand Cost and Usage patterns, opportunities for
Reservations and on-going auditing
• Reservation Procurement
▪ Producing an Optimized Reservation quote
• Ongoing Operations and Automation
▪ Modifying Reservations
▪ Automated Governance (Underutilized Reservation &
Expiring Reservations)
Reservation Lifecycle through CloudHealth
Demonstration
7 © 2018 CLOUDHEALTH
®
TECHNOLOGIES INC.
Learn More About Amazon Reserved Instances
Download our free eBook:
The Ultimate Guide to Amazon EC2 Reserved
Instances
http://bit.ly/maximizeRI
8 © 2018 CLOUDHEALTH
®
TECHNOLOGIES INC.
Analysis is critical to an optimal purchase
Include an operational framework for the purchase and
ongoing management of Reservations
Reservations is only one aspect of Optimizations
Contact CloudHealth today for a Free Trial
https://go.cloudhealthtech.com/free-trial-
signup?ref=footer
Key Take Aways
Thank You
Richard Economides
Break & Networking
• Refresh your drink
• Grab some pizza
• Make new contacts
• Enter the prize draw!
Presentation 3
David Ridge
Solutions Consultant
“Harness the noise, Evolve with Confidence”
Harness the Noise, Evolve with Confidence
David Ridge
Solutions Consultant
Digital Evolution is On-going
PROPRIETARY & CONFIDENTIAL 5
Platform for Action
Harness Digital Data Make Sense of Data Respond & Engage Teams Analyze & Learn
Incident
Containers
Social
Network
Microservices
Security
Apps & Services
Servers
Database
Cloud
Incident
Incident
Incident
Incident
Harness the Noise
6
millions of events
Deduplication & Filtering
10-90% reduction
Suppression
50-90% reduction
Routing
50-70% reduction
Alert Correlation
25-90% reduction
Handful of actionable
incidents
Triage Resolve PreventMobilize
98% event noise
reduction via
multi-stage process
7
Real-time
Intelligent
Alert Correlation
7
5% free
Real-time
Incident Correlation
Alert Correlation
for
Previous Similar Incidents
World’s Most Successful Companies Trust PagerDuty
FINANCIAL RETAIL MEDIA TECH HEALTHCARE TELCO INTERNET
12
https://www.pagerduty.com/connect/sydney/
Draw Prize
This weeks winner is :
Thanks For Coming
Join Us Next Month – September 5th 2018
Presentations from
&
>> Register @ http://www.meetup.com/AWS-Sydney/ <<

More Related Content

What's hot

Build Smarter Enterprise Apps with AI, AR & VR on AWS
Build Smarter Enterprise Apps with AI, AR & VR on AWSBuild Smarter Enterprise Apps with AI, AR & VR on AWS
Build Smarter Enterprise Apps with AI, AR & VR on AWSAmazon Web Services
 
Database Freedom. Database migration approaches to get to the Cloud - Marcus ...
Database Freedom. Database migration approaches to get to the Cloud - Marcus ...Database Freedom. Database migration approaches to get to the Cloud - Marcus ...
Database Freedom. Database migration approaches to get to the Cloud - Marcus ...Amazon Web Services
 
Serverless Architectural Patterns - ServerlessDays TLV
Serverless Architectural Patterns - ServerlessDays TLVServerless Architectural Patterns - ServerlessDays TLV
Serverless Architectural Patterns - ServerlessDays TLVBoaz Ziniman
 
Crafting a Conversational Platform Strategy (AIM338) - AWS re:Invent 2018
Crafting a Conversational Platform Strategy (AIM338) - AWS re:Invent 2018Crafting a Conversational Platform Strategy (AIM338) - AWS re:Invent 2018
Crafting a Conversational Platform Strategy (AIM338) - AWS re:Invent 2018Amazon Web Services
 
Microservices Building Scalable, Discoverable Secure Services on AWS - Chris ...
Microservices Building Scalable, Discoverable Secure Services on AWS - Chris ...Microservices Building Scalable, Discoverable Secure Services on AWS - Chris ...
Microservices Building Scalable, Discoverable Secure Services on AWS - Chris ...Amazon Web Services
 
Introduction to AI
Introduction to AIIntroduction to AI
Introduction to AIBoaz Ziniman
 
Go to Market with AWS - Kevin Park - AWS TechShift ANZ 2018
Go to Market with AWS - Kevin Park - AWS TechShift ANZ 2018Go to Market with AWS - Kevin Park - AWS TechShift ANZ 2018
Go to Market with AWS - Kevin Park - AWS TechShift ANZ 2018Amazon Web Services
 
Build and Innovate with a Modern Data Architecture
Build and Innovate with a Modern Data ArchitectureBuild and Innovate with a Modern Data Architecture
Build and Innovate with a Modern Data ArchitectureAmazon Web Services
 
AWS Webinar Series - Innovating the Customer Experience with Cloud and AI
AWS Webinar Series - Innovating the Customer Experience with Cloud and AIAWS Webinar Series - Innovating the Customer Experience with Cloud and AI
AWS Webinar Series - Innovating the Customer Experience with Cloud and AIAmazon Web Services
 
How to Do it Right - Your First 90 Days - AWS Summit Sydney 2018
How to Do it Right - Your First 90 Days - AWS Summit Sydney 2018How to Do it Right - Your First 90 Days - AWS Summit Sydney 2018
How to Do it Right - Your First 90 Days - AWS Summit Sydney 2018Amazon Web Services
 
Trends in Digital Transformation (ARC212) - AWS re:Invent 2018
Trends in Digital Transformation (ARC212) - AWS re:Invent 2018Trends in Digital Transformation (ARC212) - AWS re:Invent 2018
Trends in Digital Transformation (ARC212) - AWS re:Invent 2018Amazon Web Services
 
Building the Business Case for Migrating to AWS
Building the Business Case for Migrating to AWSBuilding the Business Case for Migrating to AWS
Building the Business Case for Migrating to AWSAmazon Web Services
 
Breaking Observability Chaos: Best Practices to Monitor AWS Cloud Native Apps...
Breaking Observability Chaos: Best Practices to Monitor AWS Cloud Native Apps...Breaking Observability Chaos: Best Practices to Monitor AWS Cloud Native Apps...
Breaking Observability Chaos: Best Practices to Monitor AWS Cloud Native Apps...Amazon Web Services
 
Innovation for Everyone - AWS Transformation Days Raleigh 2018.pdf
Innovation for Everyone - AWS Transformation Days Raleigh 2018.pdfInnovation for Everyone - AWS Transformation Days Raleigh 2018.pdf
Innovation for Everyone - AWS Transformation Days Raleigh 2018.pdfAmazon Web Services
 
Introduction to DevOps
Introduction to DevOpsIntroduction to DevOps
Introduction to DevOpsBoaz Ziniman
 
Culture Eats Strategy for Breakfast
Culture Eats Strategy for BreakfastCulture Eats Strategy for Breakfast
Culture Eats Strategy for BreakfastAmazon Web Services
 
Use Amazon Rekognition to Build a Facial Recognition System
Use Amazon Rekognition to Build a Facial Recognition SystemUse Amazon Rekognition to Build a Facial Recognition System
Use Amazon Rekognition to Build a Facial Recognition SystemAmazon Web Services
 
Amazon SageMaker Ground Truth: Build High-Quality and Accurate ML Training Da...
Amazon SageMaker Ground Truth: Build High-Quality and Accurate ML Training Da...Amazon SageMaker Ground Truth: Build High-Quality and Accurate ML Training Da...
Amazon SageMaker Ground Truth: Build High-Quality and Accurate ML Training Da...Amazon Web Services
 

What's hot (20)

Build Smarter Enterprise Apps with AI, AR & VR on AWS
Build Smarter Enterprise Apps with AI, AR & VR on AWSBuild Smarter Enterprise Apps with AI, AR & VR on AWS
Build Smarter Enterprise Apps with AI, AR & VR on AWS
 
Database Freedom. Database migration approaches to get to the Cloud - Marcus ...
Database Freedom. Database migration approaches to get to the Cloud - Marcus ...Database Freedom. Database migration approaches to get to the Cloud - Marcus ...
Database Freedom. Database migration approaches to get to the Cloud - Marcus ...
 
Serverless Architectural Patterns - ServerlessDays TLV
Serverless Architectural Patterns - ServerlessDays TLVServerless Architectural Patterns - ServerlessDays TLV
Serverless Architectural Patterns - ServerlessDays TLV
 
Crafting a Conversational Platform Strategy (AIM338) - AWS re:Invent 2018
Crafting a Conversational Platform Strategy (AIM338) - AWS re:Invent 2018Crafting a Conversational Platform Strategy (AIM338) - AWS re:Invent 2018
Crafting a Conversational Platform Strategy (AIM338) - AWS re:Invent 2018
 
Microservices Building Scalable, Discoverable Secure Services on AWS - Chris ...
Microservices Building Scalable, Discoverable Secure Services on AWS - Chris ...Microservices Building Scalable, Discoverable Secure Services on AWS - Chris ...
Microservices Building Scalable, Discoverable Secure Services on AWS - Chris ...
 
Introduction to AI
Introduction to AIIntroduction to AI
Introduction to AI
 
Go to Market with AWS - Kevin Park - AWS TechShift ANZ 2018
Go to Market with AWS - Kevin Park - AWS TechShift ANZ 2018Go to Market with AWS - Kevin Park - AWS TechShift ANZ 2018
Go to Market with AWS - Kevin Park - AWS TechShift ANZ 2018
 
Build and Innovate with a Modern Data Architecture
Build and Innovate with a Modern Data ArchitectureBuild and Innovate with a Modern Data Architecture
Build and Innovate with a Modern Data Architecture
 
AWS Webinar Series - Innovating the Customer Experience with Cloud and AI
AWS Webinar Series - Innovating the Customer Experience with Cloud and AIAWS Webinar Series - Innovating the Customer Experience with Cloud and AI
AWS Webinar Series - Innovating the Customer Experience with Cloud and AI
 
How to Do it Right - Your First 90 Days - AWS Summit Sydney 2018
How to Do it Right - Your First 90 Days - AWS Summit Sydney 2018How to Do it Right - Your First 90 Days - AWS Summit Sydney 2018
How to Do it Right - Your First 90 Days - AWS Summit Sydney 2018
 
Trends in Digital Transformation (ARC212) - AWS re:Invent 2018
Trends in Digital Transformation (ARC212) - AWS re:Invent 2018Trends in Digital Transformation (ARC212) - AWS re:Invent 2018
Trends in Digital Transformation (ARC212) - AWS re:Invent 2018
 
Building the Business Case for Migrating to AWS
Building the Business Case for Migrating to AWSBuilding the Business Case for Migrating to AWS
Building the Business Case for Migrating to AWS
 
Breaking Observability Chaos: Best Practices to Monitor AWS Cloud Native Apps...
Breaking Observability Chaos: Best Practices to Monitor AWS Cloud Native Apps...Breaking Observability Chaos: Best Practices to Monitor AWS Cloud Native Apps...
Breaking Observability Chaos: Best Practices to Monitor AWS Cloud Native Apps...
 
Innovation for Everyone - AWS Transformation Days Raleigh 2018.pdf
Innovation for Everyone - AWS Transformation Days Raleigh 2018.pdfInnovation for Everyone - AWS Transformation Days Raleigh 2018.pdf
Innovation for Everyone - AWS Transformation Days Raleigh 2018.pdf
 
Introduction to DevOps
Introduction to DevOpsIntroduction to DevOps
Introduction to DevOps
 
Culture Eats Strategy for Breakfast
Culture Eats Strategy for BreakfastCulture Eats Strategy for Breakfast
Culture Eats Strategy for Breakfast
 
Amazon SageMaker
Amazon SageMakerAmazon SageMaker
Amazon SageMaker
 
Use Amazon Rekognition to Build a Facial Recognition System
Use Amazon Rekognition to Build a Facial Recognition SystemUse Amazon Rekognition to Build a Facial Recognition System
Use Amazon Rekognition to Build a Facial Recognition System
 
Amazon SageMaker Ground Truth: Build High-Quality and Accurate ML Training Da...
Amazon SageMaker Ground Truth: Build High-Quality and Accurate ML Training Da...Amazon SageMaker Ground Truth: Build High-Quality and Accurate ML Training Da...
Amazon SageMaker Ground Truth: Build High-Quality and Accurate ML Training Da...
 
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 AWS User Group August

Architecting for Real-Time Insights with Amazon Kinesis (ANT310) - AWS re:Inv...
Architecting for Real-Time Insights with Amazon Kinesis (ANT310) - AWS re:Inv...Architecting for Real-Time Insights with Amazon Kinesis (ANT310) - AWS re:Inv...
Architecting for Real-Time Insights with Amazon Kinesis (ANT310) - AWS re:Inv...Amazon Web Services
 
Overview Best Practices for Large Scale Migrations - Transformation Day Phila...
Overview Best Practices for Large Scale Migrations - Transformation Day Phila...Overview Best Practices for Large Scale Migrations - Transformation Day Phila...
Overview Best Practices for Large Scale Migrations - Transformation Day Phila...Amazon Web Services
 
Monitor All Your Things: Amazon CloudWatch in Action with BBC (DEV302) - AWS ...
Monitor All Your Things: Amazon CloudWatch in Action with BBC (DEV302) - AWS ...Monitor All Your Things: Amazon CloudWatch in Action with BBC (DEV302) - AWS ...
Monitor All Your Things: Amazon CloudWatch in Action with BBC (DEV302) - AWS ...Amazon Web Services
 
An Overview of Best Practices for Large Scale Migrations - AWS Transformation...
An Overview of Best Practices for Large Scale Migrations - AWS Transformation...An Overview of Best Practices for Large Scale Migrations - AWS Transformation...
An Overview of Best Practices for Large Scale Migrations - AWS Transformation...Amazon Web Services
 
Optimizing Costs as You Scale on AWS (ENT302) - AWS re:Invent 2018
Optimizing Costs as You Scale on AWS (ENT302) - AWS re:Invent 2018Optimizing Costs as You Scale on AWS (ENT302) - AWS re:Invent 2018
Optimizing Costs as You Scale on AWS (ENT302) - AWS re:Invent 2018Amazon Web Services
 
Best Practices for Large Scale Migrations - AWS Transformation Day Boston 2018
Best Practices for Large Scale Migrations - AWS Transformation Day Boston 2018Best Practices for Large Scale Migrations - AWS Transformation Day Boston 2018
Best Practices for Large Scale Migrations - AWS Transformation Day Boston 2018Amazon Web Services
 
Moving to DevOps the Amazon Way (DEV210-R1) - AWS re:Invent 2018
Moving to DevOps the Amazon Way (DEV210-R1) - AWS re:Invent 2018Moving to DevOps the Amazon Way (DEV210-R1) - AWS re:Invent 2018
Moving to DevOps the Amazon Way (DEV210-R1) - AWS re:Invent 2018Amazon Web Services
 
AWS Cloud Experience CA: Cómo reducir sus costos en AWS (broad cost strategy)
AWS Cloud Experience CA: Cómo reducir sus costos en AWS (broad cost strategy)AWS Cloud Experience CA: Cómo reducir sus costos en AWS (broad cost strategy)
AWS Cloud Experience CA: Cómo reducir sus costos en AWS (broad cost strategy)Amazon Web Services LATAM
 
Cost Optimisation Using Modern Cloud Architectures - AWS Summit Sydney 2018
Cost Optimisation Using Modern Cloud Architectures - AWS Summit Sydney 2018Cost Optimisation Using Modern Cloud Architectures - AWS Summit Sydney 2018
Cost Optimisation Using Modern Cloud Architectures - AWS Summit Sydney 2018Amazon Web Services
 
AWS 金融服務概覽與區塊鍊案例分享
AWS 金融服務概覽與區塊鍊案例分享AWS 金融服務概覽與區塊鍊案例分享
AWS 金融服務概覽與區塊鍊案例分享Amazon Web Services
 
Digital Transformation: Empowering People to Adapt to the Cloud
Digital Transformation: Empowering People to Adapt to the CloudDigital Transformation: Empowering People to Adapt to the Cloud
Digital Transformation: Empowering People to Adapt to the CloudAmazon Web Services
 
애드테크 플랫폼을 위한 AWS 도입 및 운영::김필중 솔루션즈 아키텍트 김석환 과장, IGAWorks::AWS Summit Seoul 2018
애드테크 플랫폼을 위한 AWS 도입 및 운영::김필중 솔루션즈 아키텍트 김석환 과장, IGAWorks::AWS Summit Seoul 2018애드테크 플랫폼을 위한 AWS 도입 및 운영::김필중 솔루션즈 아키텍트 김석환 과장, IGAWorks::AWS Summit Seoul 2018
애드테크 플랫폼을 위한 AWS 도입 및 운영::김필중 솔루션즈 아키텍트 김석환 과장, IGAWorks::AWS Summit Seoul 2018Amazon Web Services Korea
 
BDA309 Build Your First Big Data Application on AWS
BDA309 Build Your First Big Data Application on AWSBDA309 Build Your First Big Data Application on AWS
BDA309 Build Your First Big Data Application on AWSAmazon Web Services
 
Introducing Amazon SageMaker - AWS Online Tech Talks
Introducing Amazon SageMaker - AWS Online Tech TalksIntroducing Amazon SageMaker - AWS Online Tech Talks
Introducing Amazon SageMaker - AWS Online Tech TalksAmazon Web Services
 
Large Scale Migrations - Transformation Day Montreal 2018
Large Scale Migrations - Transformation Day Montreal 2018Large Scale Migrations - Transformation Day Montreal 2018
Large Scale Migrations - Transformation Day Montreal 2018Amazon Web Services
 
Your road to a Well Architected solution in the Cloud - Tel Aviv Summit 2018
Your road to a Well Architected solution in the Cloud - Tel Aviv Summit 2018Your road to a Well Architected solution in the Cloud - Tel Aviv Summit 2018
Your road to a Well Architected solution in the Cloud - Tel Aviv Summit 2018Amazon Web Services
 
Innovation Track AWS Cloud Experience Argentina - Optimizando Costos
Innovation Track AWS Cloud Experience Argentina - Optimizando CostosInnovation Track AWS Cloud Experience Argentina - Optimizando Costos
Innovation Track AWS Cloud Experience Argentina - Optimizando CostosAmazon Web Services LATAM
 
AI/ML with Data Lakes: Counterintuitive Consumer Insights in Retail (RET206) ...
AI/ML with Data Lakes: Counterintuitive Consumer Insights in Retail (RET206) ...AI/ML with Data Lakes: Counterintuitive Consumer Insights in Retail (RET206) ...
AI/ML with Data Lakes: Counterintuitive Consumer Insights in Retail (RET206) ...Amazon Web Services
 
Hitchhiker's Guide to Cloud Ops
Hitchhiker's Guide to Cloud Ops Hitchhiker's Guide to Cloud Ops
Hitchhiker's Guide to Cloud Ops Amazon Web Services
 
Optimize EC2 for Fun and Profit - SRV203 - Anaheim AWS Summit
Optimize EC2 for Fun and Profit - SRV203 - Anaheim AWS SummitOptimize EC2 for Fun and Profit - SRV203 - Anaheim AWS Summit
Optimize EC2 for Fun and Profit - SRV203 - Anaheim AWS SummitAmazon Web Services
 

Similar to AWS User Group August (20)

Architecting for Real-Time Insights with Amazon Kinesis (ANT310) - AWS re:Inv...
Architecting for Real-Time Insights with Amazon Kinesis (ANT310) - AWS re:Inv...Architecting for Real-Time Insights with Amazon Kinesis (ANT310) - AWS re:Inv...
Architecting for Real-Time Insights with Amazon Kinesis (ANT310) - AWS re:Inv...
 
Overview Best Practices for Large Scale Migrations - Transformation Day Phila...
Overview Best Practices for Large Scale Migrations - Transformation Day Phila...Overview Best Practices for Large Scale Migrations - Transformation Day Phila...
Overview Best Practices for Large Scale Migrations - Transformation Day Phila...
 
Monitor All Your Things: Amazon CloudWatch in Action with BBC (DEV302) - AWS ...
Monitor All Your Things: Amazon CloudWatch in Action with BBC (DEV302) - AWS ...Monitor All Your Things: Amazon CloudWatch in Action with BBC (DEV302) - AWS ...
Monitor All Your Things: Amazon CloudWatch in Action with BBC (DEV302) - AWS ...
 
An Overview of Best Practices for Large Scale Migrations - AWS Transformation...
An Overview of Best Practices for Large Scale Migrations - AWS Transformation...An Overview of Best Practices for Large Scale Migrations - AWS Transformation...
An Overview of Best Practices for Large Scale Migrations - AWS Transformation...
 
Optimizing Costs as You Scale on AWS (ENT302) - AWS re:Invent 2018
Optimizing Costs as You Scale on AWS (ENT302) - AWS re:Invent 2018Optimizing Costs as You Scale on AWS (ENT302) - AWS re:Invent 2018
Optimizing Costs as You Scale on AWS (ENT302) - AWS re:Invent 2018
 
Best Practices for Large Scale Migrations - AWS Transformation Day Boston 2018
Best Practices for Large Scale Migrations - AWS Transformation Day Boston 2018Best Practices for Large Scale Migrations - AWS Transformation Day Boston 2018
Best Practices for Large Scale Migrations - AWS Transformation Day Boston 2018
 
Moving to DevOps the Amazon Way (DEV210-R1) - AWS re:Invent 2018
Moving to DevOps the Amazon Way (DEV210-R1) - AWS re:Invent 2018Moving to DevOps the Amazon Way (DEV210-R1) - AWS re:Invent 2018
Moving to DevOps the Amazon Way (DEV210-R1) - AWS re:Invent 2018
 
AWS Cloud Experience CA: Cómo reducir sus costos en AWS (broad cost strategy)
AWS Cloud Experience CA: Cómo reducir sus costos en AWS (broad cost strategy)AWS Cloud Experience CA: Cómo reducir sus costos en AWS (broad cost strategy)
AWS Cloud Experience CA: Cómo reducir sus costos en AWS (broad cost strategy)
 
Cost Optimisation Using Modern Cloud Architectures - AWS Summit Sydney 2018
Cost Optimisation Using Modern Cloud Architectures - AWS Summit Sydney 2018Cost Optimisation Using Modern Cloud Architectures - AWS Summit Sydney 2018
Cost Optimisation Using Modern Cloud Architectures - AWS Summit Sydney 2018
 
AWS 金融服務概覽與區塊鍊案例分享
AWS 金融服務概覽與區塊鍊案例分享AWS 金融服務概覽與區塊鍊案例分享
AWS 金融服務概覽與區塊鍊案例分享
 
Digital Transformation: Empowering People to Adapt to the Cloud
Digital Transformation: Empowering People to Adapt to the CloudDigital Transformation: Empowering People to Adapt to the Cloud
Digital Transformation: Empowering People to Adapt to the Cloud
 
애드테크 플랫폼을 위한 AWS 도입 및 운영::김필중 솔루션즈 아키텍트 김석환 과장, IGAWorks::AWS Summit Seoul 2018
애드테크 플랫폼을 위한 AWS 도입 및 운영::김필중 솔루션즈 아키텍트 김석환 과장, IGAWorks::AWS Summit Seoul 2018애드테크 플랫폼을 위한 AWS 도입 및 운영::김필중 솔루션즈 아키텍트 김석환 과장, IGAWorks::AWS Summit Seoul 2018
애드테크 플랫폼을 위한 AWS 도입 및 운영::김필중 솔루션즈 아키텍트 김석환 과장, IGAWorks::AWS Summit Seoul 2018
 
BDA309 Build Your First Big Data Application on AWS
BDA309 Build Your First Big Data Application on AWSBDA309 Build Your First Big Data Application on AWS
BDA309 Build Your First Big Data Application on AWS
 
Introducing Amazon SageMaker - AWS Online Tech Talks
Introducing Amazon SageMaker - AWS Online Tech TalksIntroducing Amazon SageMaker - AWS Online Tech Talks
Introducing Amazon SageMaker - AWS Online Tech Talks
 
Large Scale Migrations - Transformation Day Montreal 2018
Large Scale Migrations - Transformation Day Montreal 2018Large Scale Migrations - Transformation Day Montreal 2018
Large Scale Migrations - Transformation Day Montreal 2018
 
Your road to a Well Architected solution in the Cloud - Tel Aviv Summit 2018
Your road to a Well Architected solution in the Cloud - Tel Aviv Summit 2018Your road to a Well Architected solution in the Cloud - Tel Aviv Summit 2018
Your road to a Well Architected solution in the Cloud - Tel Aviv Summit 2018
 
Innovation Track AWS Cloud Experience Argentina - Optimizando Costos
Innovation Track AWS Cloud Experience Argentina - Optimizando CostosInnovation Track AWS Cloud Experience Argentina - Optimizando Costos
Innovation Track AWS Cloud Experience Argentina - Optimizando Costos
 
AI/ML with Data Lakes: Counterintuitive Consumer Insights in Retail (RET206) ...
AI/ML with Data Lakes: Counterintuitive Consumer Insights in Retail (RET206) ...AI/ML with Data Lakes: Counterintuitive Consumer Insights in Retail (RET206) ...
AI/ML with Data Lakes: Counterintuitive Consumer Insights in Retail (RET206) ...
 
Hitchhiker's Guide to Cloud Ops
Hitchhiker's Guide to Cloud Ops Hitchhiker's Guide to Cloud Ops
Hitchhiker's Guide to Cloud Ops
 
Optimize EC2 for Fun and Profit - SRV203 - Anaheim AWS Summit
Optimize EC2 for Fun and Profit - SRV203 - Anaheim AWS SummitOptimize EC2 for Fun and Profit - SRV203 - Anaheim AWS Summit
Optimize EC2 for Fun and Profit - SRV203 - Anaheim AWS Summit
 

More from PolarSeven Pty Ltd

AWS Forcecast: DeepAR Predictor Time-series
AWS Forcecast: DeepAR Predictor Time-series AWS Forcecast: DeepAR Predictor Time-series
AWS Forcecast: DeepAR Predictor Time-series PolarSeven Pty Ltd
 
Aws user group #04 landing zones
Aws user group #04   landing zonesAws user group #04   landing zones
Aws user group #04 landing zonesPolarSeven Pty Ltd
 
Aws user group #03 - All things Iot
Aws user group #03 - All things IotAws user group #03 - All things Iot
Aws user group #03 - All things IotPolarSeven Pty Ltd
 
Aws user group #01 lets talk serverless
Aws user group #01   lets talk serverlessAws user group #01   lets talk serverless
Aws user group #01 lets talk serverlessPolarSeven Pty Ltd
 
Amazon Web Services User Group Sydney - March 2018
Amazon Web Services User Group Sydney - March 2018Amazon Web Services User Group Sydney - March 2018
Amazon Web Services User Group Sydney - March 2018PolarSeven Pty Ltd
 
Amazon Web Services User Group Sydney - February 2018
Amazon Web Services User Group Sydney - February 2018Amazon Web Services User Group Sydney - February 2018
Amazon Web Services User Group Sydney - February 2018PolarSeven Pty Ltd
 
Deep Dive on Cloud Policies and Automation
Deep Dive on Cloud Policies and AutomationDeep Dive on Cloud Policies and Automation
Deep Dive on Cloud Policies and AutomationPolarSeven Pty Ltd
 
Securing Traffic Leaving A VPC
Securing Traffic Leaving A VPCSecuring Traffic Leaving A VPC
Securing Traffic Leaving A VPCPolarSeven Pty Ltd
 
Telstra Programmable Networks & Scaling a Serverless Team with Automation
 Telstra Programmable Networks & Scaling a Serverless Team with Automation Telstra Programmable Networks & Scaling a Serverless Team with Automation
Telstra Programmable Networks & Scaling a Serverless Team with AutomationPolarSeven Pty Ltd
 
AWS User Group Sydney - Meetup #60
AWS User Group Sydney - Meetup #60AWS User Group Sydney - Meetup #60
AWS User Group Sydney - Meetup #60PolarSeven Pty Ltd
 
Visibility, Optimization & Governance for Cloud Services
Visibility, Optimization & Governance for Cloud ServicesVisibility, Optimization & Governance for Cloud Services
Visibility, Optimization & Governance for Cloud ServicesPolarSeven Pty Ltd
 
AWS OpsWorks for Chef Automate
AWS OpsWorks for Chef AutomateAWS OpsWorks for Chef Automate
AWS OpsWorks for Chef AutomatePolarSeven Pty Ltd
 
AWS CloudFormation Automation, TrafficScript, and Serverless architecture wit...
AWS CloudFormation Automation, TrafficScript, and Serverless architecture wit...AWS CloudFormation Automation, TrafficScript, and Serverless architecture wit...
AWS CloudFormation Automation, TrafficScript, and Serverless architecture wit...PolarSeven Pty Ltd
 
AWS User Group Sydney - Atlassian 5-10-16
AWS User Group Sydney - Atlassian 5-10-16AWS User Group Sydney - Atlassian 5-10-16
AWS User Group Sydney - Atlassian 5-10-16PolarSeven Pty Ltd
 

More from PolarSeven Pty Ltd (20)

AWS Forcecast: DeepAR Predictor Time-series
AWS Forcecast: DeepAR Predictor Time-series AWS Forcecast: DeepAR Predictor Time-series
AWS Forcecast: DeepAR Predictor Time-series
 
Aws user group #04 landing zones
Aws user group #04   landing zonesAws user group #04   landing zones
Aws user group #04 landing zones
 
Aws user group #03 - All things Iot
Aws user group #03 - All things IotAws user group #03 - All things Iot
Aws user group #03 - All things Iot
 
Aws user group #01 lets talk serverless
Aws user group #01   lets talk serverlessAws user group #01   lets talk serverless
Aws user group #01 lets talk serverless
 
AWS Reinvent Recap 2018
AWS Reinvent Recap 2018 AWS Reinvent Recap 2018
AWS Reinvent Recap 2018
 
AWS User Group October
AWS User Group OctoberAWS User Group October
AWS User Group October
 
AWS User Group November
AWS User Group NovemberAWS User Group November
AWS User Group November
 
AWS User Group September
AWS User Group September AWS User Group September
AWS User Group September
 
Amazon Web Services User Group Sydney - March 2018
Amazon Web Services User Group Sydney - March 2018Amazon Web Services User Group Sydney - March 2018
Amazon Web Services User Group Sydney - March 2018
 
Amazon Web Services User Group Sydney - February 2018
Amazon Web Services User Group Sydney - February 2018Amazon Web Services User Group Sydney - February 2018
Amazon Web Services User Group Sydney - February 2018
 
Deep Dive on Cloud Policies and Automation
Deep Dive on Cloud Policies and AutomationDeep Dive on Cloud Policies and Automation
Deep Dive on Cloud Policies and Automation
 
Securing Traffic Leaving A VPC
Securing Traffic Leaving A VPCSecuring Traffic Leaving A VPC
Securing Traffic Leaving A VPC
 
Telstra Programmable Networks & Scaling a Serverless Team with Automation
 Telstra Programmable Networks & Scaling a Serverless Team with Automation Telstra Programmable Networks & Scaling a Serverless Team with Automation
Telstra Programmable Networks & Scaling a Serverless Team with Automation
 
AWS User Group Sydney - Meetup #60
AWS User Group Sydney - Meetup #60AWS User Group Sydney - Meetup #60
AWS User Group Sydney - Meetup #60
 
Shared Security in AWS
Shared Security in AWSShared Security in AWS
Shared Security in AWS
 
Visibility, Optimization & Governance for Cloud Services
Visibility, Optimization & Governance for Cloud ServicesVisibility, Optimization & Governance for Cloud Services
Visibility, Optimization & Governance for Cloud Services
 
AWS OpsWorks for Chef Automate
AWS OpsWorks for Chef AutomateAWS OpsWorks for Chef Automate
AWS OpsWorks for Chef Automate
 
AWS CloudFormation Automation, TrafficScript, and Serverless architecture wit...
AWS CloudFormation Automation, TrafficScript, and Serverless architecture wit...AWS CloudFormation Automation, TrafficScript, and Serverless architecture wit...
AWS CloudFormation Automation, TrafficScript, and Serverless architecture wit...
 
AWS User Group December 2016
AWS User Group December 2016AWS User Group December 2016
AWS User Group December 2016
 
AWS User Group Sydney - Atlassian 5-10-16
AWS User Group Sydney - Atlassian 5-10-16AWS User Group Sydney - Atlassian 5-10-16
AWS User Group Sydney - Atlassian 5-10-16
 

Recently uploaded

A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 

Recently uploaded (20)

A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 

AWS User Group August

  • 3. What’s On Tonight 6:00 pm 1. AWS Rekognition “Automating Video Editing with Amazon Rekognition” - John Rotenstein 6:20 pm 2. CloudHealth “Managing Cost through Reservation Management” - Richard Economides 6:40 pm Break Have some pizza & beer, on us! 7:20 pm 3. PagerDuty “Harness the noise, Evolve with confidence” - David Ridge 7:40 pm Networking
  • 4. Presentation 1 John Rotenstein Technology Consultant “Automated Video Editing with Amazon Rekognition”
  • 5. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. John Rotenstein (jorote@amazon.com) Technical Trainer, Amazon Web Services Automated Video Editing with Amazon Rekognition
  • 6. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Three examples of Amazon Rekognition with… Still Images Video Files Streaming Video
  • 7. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. 1. Detecting faces in still images
  • 8. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Loop: Capture an image & draw rectangles while(True): # Capture frame frame = capture.read()... # Resize image for faster rekognition image = capture.resize(frame, 0.15, ...) # Detect faces in image faces = rekognition.detect_faces(Image={'Bytes':image}, ...) # Draw rectangle around faces for face in faces['FaceDetails']: is_smiling = face['Smile']['Value'] draw_rectangle(image, face['BoundingBox'], is_smiling)
  • 9. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Attributes returned by DetectFaces() { "FaceDetails": [ { "AgeRange": {"High"..."Low"...}, "Beard": {...}, "BoundingBox": {"Height".."Left".."Top".."Width"..}, "Eyeglasses": {...}, "EyesOpen": {...}, "Gender": {...}, "MouthOpen": {...}, "Mustache": {...}, "Smile": {...}, "Sunglasses": {...} ] }
  • 10. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. 2. Using Amazon Rekognition on Video Files Find a person, make a video of just them
  • 11. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Create a Collection & Load Faces $ aws rekognition create-collection --collection-id trainers $ aws rekognition index-faces --collection-id trainers --image "S3Object={Bucket=mybucket,Name=john.jpg}" --external-image-id John
  • 12. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Search for faces $ aws rekognition start-face-search --video "S3Object={Bucket=...,Name=trainers.mp4}” --collection-id trainers $ aws rekognition get-face-search --job-id...
  • 13. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. DetectFaces() returns Timestamps and Faces { "Persons": [ { "Timestamp": 7360, "FaceMatches": [ { "Face": { "ExternalImageId": "John", "Confidence": 99.99750518798828 ...} } ], }, { "Timestamp": 7560, ...
  • 14. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Clip Stitching with Amazon Elastic Transcoder Timestamps: [99800, 99840, 100000, 100040, ...] Convert into individual scene start/end times: [(99800, 101480), (127520, 131760), ...] Convert into clips for Amazon Elastic Transcoder: [ {'Key': 'trainers.mp4', 'TimeSpan': {'StartTime': '99.8', 'Duration': '1.68'}}, {'Key': 'trainers.mp4', 'TimeSpan': {StartTime': '127.52’, 'Duration': '4.24'}}, ... ]
  • 15. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Result:
  • 16. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. 3. Open a door with your face (Rekognition Streaming) + =
  • 17. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Architecture diagram Live Camera Amazon Kinesis Video Streams Amazon Rekognition Video Face collection 1. Camera-captured video streams are processed by Kinesis Video Streams 2. Rekognition Video analyses the video and searches faces on screen against a collection of millions of faces IoT thing lightbulb AWS Lambda Amazon Kinesis Streams
  • 18. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Thank You John Rotenstein jorote@amazon.com
  • 19. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Want to Know More? Talk to an AWS Team Member
  • 20. Presentation 2 Richard Economides Technology Consultant “Managing Cost through Reservation Management”
  • 21. Cloud Service Management Modeling and Managing Reservations Richard Economides reconomides@cloudhealthtech.com www.linkedin.com/in/richard-economides-50764622/
  • 22. 2 © 2018 CLOUDHEALTH ® TECHNOLOGIES INC. VisibilityOptimisationGovernance Define tagging taxonomy & reporting requirements Initial Cost & usage reporting Rightsizing information gathering & discovery Wasted cost analysis (identification) Define financial management policies Phase 1 Onboarding Reporting on RI utilization Trending and forecast analysis Rightsizing baselining & Analysis (EC2 & EBS) Reserved instance procurement Configuration policies (Tagging compliance) Operational management policies (identify and terminate zombie infrastructure) Phase 2 Optimisations Financial reporting (chargeback & Budget tracking) Container cost analysis and showback Rightsizing business workflow On-going RI analysis and procurement Data Centre migration Notify on Budget and cost variance Introduce smart workload scheduling Phase 3 Self Governing Cloud Defining a Cost Optimisation Strategy
  • 23. 3 © 2018 CLOUDHEALTH ® TECHNOLOGIES INC. Customer Success Stories CloudHealth Reservation Management “We manage a fleet of RIs worth millions; one CloudHealth modification helped save several thousand dollars in a week. Per year, I’d say we’re saving hundreds of thousands.” I have a policy setup that sends an email every morning showing me which RIs aren’t being utilised properly. We only use Convertible Reservations, and this email triggers me to log in to AWS and make an exchange for a different instance type. — Charmaine Honeycutt, Systems Administrator “ “ “ “ — Brent Strong, Manager of Cloud Engineering & Operations
  • 24. 4 © 2018 CLOUDHEALTH ® TECHNOLOGIES INC. • On-demand hourly discount • Three purchasing options: All Upfront, Partial Upfront, No Upfront • 1 or 3 year terms • Can be modified in limited ways Think Vouchers - Not Instances What Are EC2 Reserved Instances? Offer Type Commitment Discount Range No Upfront 1 Year 27%–50% Partial Upfront 1 Year 32%–53% All Upfront 1 Year 34%–53% No Upfront 3 Year 32%-55% Partial Upfront 3 Year 38%-74% All Upfront 3 Year 38%-75%
  • 25. 5 © 2018 CLOUDHEALTH ® TECHNOLOGIES INC. When to Use Standard vs Convertible Reservations Standard Reservations Convertible Reservations • When you want the biggest possible discount on reservations, but in exchange are willing to accept less flexibility in changes • When you only want to make a one year commitment • When you are willing to pay slightly more to have significantly more flexibility in changes to Reservations • When you are willing to make a 3 year commitment
  • 26. 6 © 2018 CLOUDHEALTH ® TECHNOLOGIES INC. • Understand Cost and Usage patterns, opportunities for Reservations and on-going auditing • Reservation Procurement ▪ Producing an Optimized Reservation quote • Ongoing Operations and Automation ▪ Modifying Reservations ▪ Automated Governance (Underutilized Reservation & Expiring Reservations) Reservation Lifecycle through CloudHealth Demonstration
  • 27. 7 © 2018 CLOUDHEALTH ® TECHNOLOGIES INC. Learn More About Amazon Reserved Instances Download our free eBook: The Ultimate Guide to Amazon EC2 Reserved Instances http://bit.ly/maximizeRI
  • 28. 8 © 2018 CLOUDHEALTH ® TECHNOLOGIES INC. Analysis is critical to an optimal purchase Include an operational framework for the purchase and ongoing management of Reservations Reservations is only one aspect of Optimizations Contact CloudHealth today for a Free Trial https://go.cloudhealthtech.com/free-trial- signup?ref=footer Key Take Aways
  • 30. Break & Networking • Refresh your drink • Grab some pizza • Make new contacts • Enter the prize draw!
  • 31. Presentation 3 David Ridge Solutions Consultant “Harness the noise, Evolve with Confidence”
  • 32. Harness the Noise, Evolve with Confidence David Ridge Solutions Consultant
  • 33.
  • 35.
  • 36. PROPRIETARY & CONFIDENTIAL 5 Platform for Action Harness Digital Data Make Sense of Data Respond & Engage Teams Analyze & Learn Incident Containers Social Network Microservices Security Apps & Services Servers Database Cloud Incident Incident Incident Incident
  • 37. Harness the Noise 6 millions of events Deduplication & Filtering 10-90% reduction Suppression 50-90% reduction Routing 50-70% reduction Alert Correlation 25-90% reduction Handful of actionable incidents Triage Resolve PreventMobilize 98% event noise reduction via multi-stage process
  • 40.
  • 41.
  • 43. World’s Most Successful Companies Trust PagerDuty FINANCIAL RETAIL MEDIA TECH HEALTHCARE TELCO INTERNET 12
  • 45. Draw Prize This weeks winner is :
  • 46. Thanks For Coming Join Us Next Month – September 5th 2018 Presentations from & >> Register @ http://www.meetup.com/AWS-Sydney/ <<