sns topics
play

SNS Topics IN TRODUCTION TO AW S BOTO IN P YTH ON Maksim - PowerPoint PPT Presentation

SNS Topics IN TRODUCTION TO AW S BOTO IN P YTH ON Maksim Pecherskiy Data Engineer! SNS INTRODUCTION TO AWS BOTO IN PYTHON Understanding SNS INTRODUCTION TO AWS BOTO IN PYTHON Understanding SNS INTRODUCTION TO AWS BOTO IN PYTHON


  1. SNS Topics IN TRODUCTION TO AW S BOTO IN P YTH ON Maksim Pecherskiy Data Engineer!

  2. SNS INTRODUCTION TO AWS BOTO IN PYTHON

  3. Understanding SNS INTRODUCTION TO AWS BOTO IN PYTHON

  4. Understanding SNS INTRODUCTION TO AWS BOTO IN PYTHON

  5. Understanding SNS INTRODUCTION TO AWS BOTO IN PYTHON

  6. Understanding SNS INTRODUCTION TO AWS BOTO IN PYTHON

  7. Understanding SNS INTRODUCTION TO AWS BOTO IN PYTHON

  8. Understanding SNS INTRODUCTION TO AWS BOTO IN PYTHON

  9. Accessing SNS INTRODUCTION TO AWS BOTO IN PYTHON

  10. SNS Dashboard INTRODUCTION TO AWS BOTO IN PYTHON

  11. SNS Topics INTRODUCTION TO AWS BOTO IN PYTHON

  12. SNS Topics INTRODUCTION TO AWS BOTO IN PYTHON

  13. Creating an SNS Topic sns = boto3.client('sns', region_name='us-east-1', aws_access_key_id=AWS_KEY_ID, aws_secret_access_key=AWS_SECRET) INTRODUCTION TO AWS BOTO IN PYTHON

  14. Creating an SNS Topic response = sns.create_topic(Name='city_alerts') INTRODUCTION TO AWS BOTO IN PYTHON

  15. Creating an SNS Topic INTRODUCTION TO AWS BOTO IN PYTHON

  16. Creating an SNS Topic topic_arn = response['TopicArn'] Or... a shortcut sns.create_topic(Name='city_alerts')['TopicArn'] INTRODUCTION TO AWS BOTO IN PYTHON

  17. Creating an SNS Topic INTRODUCTION TO AWS BOTO IN PYTHON

  18. Permissions INTRODUCTION TO AWS BOTO IN PYTHON

  19. Listing topics response = sns.list_topics() INTRODUCTION TO AWS BOTO IN PYTHON

  20. Listing topics INTRODUCTION TO AWS BOTO IN PYTHON

  21. Deleting topics sns.delete_topic(TopicArn='arn:aws:sns:us-east-1:320333787981:city_alerts') INTRODUCTION TO AWS BOTO IN PYTHON

  22. Review INTRODUCTION TO AWS BOTO IN PYTHON

  23. Review Create SNS Client sns = boto3.client('sns', region_name='us-east-1', aws_access_key_id=AWS_KEY_ID, aws_secret_access_key=AWS_SECRET) Create a topic response = sns.create_topic(Name='city_alerts') topic_arn = response['TopicArn'] INTRODUCTION TO AWS BOTO IN PYTHON

  24. Review List Topics response = sns.list_topics() topics = response['Topics'] Delete a topic sns.delete_topic(TopicArn='arn:aws:sns:us-east-1:320333787981:city_alerts') INTRODUCTION TO AWS BOTO IN PYTHON

  25. Let's practice! IN TRODUCTION TO AW S BOTO IN P YTH ON

  26. SNS Subscriptions IN TRODUCTION TO AW S BOTO IN P YTH ON Maksim Pecherskiy Data Engineer

  27. Subscription Listing INTRODUCTION TO AWS BOTO IN PYTHON

  28. Subscription Listing INTRODUCTION TO AWS BOTO IN PYTHON

  29. Subscription Listing INTRODUCTION TO AWS BOTO IN PYTHON

  30. Subscription Listing INTRODUCTION TO AWS BOTO IN PYTHON

  31. Creating an SMS subscription. sns = boto3.client('sns', region_name='us-east-1', aws_access_key_id=AWS_KEY_ID, aws_secret_access_key=AWS_SECRET) response = sns.subscribe( TopicArn = 'arn:aws:sns:us-east-1:320333787981:city_alerts', Protocol = 'SMS', Endpoint = '+13125551123') INTRODUCTION TO AWS BOTO IN PYTHON

  32. Create an SMS subscription. INTRODUCTION TO AWS BOTO IN PYTHON

  33. Creating an email subscription response = sns.subscribe( TopicArn = 'arn:aws:sns:us-east-1:320333787981:city_alerts', Protocol='email', Endpoint='max@maksimize.com') INTRODUCTION TO AWS BOTO IN PYTHON

  34. Creating an email subscription INTRODUCTION TO AWS BOTO IN PYTHON

  35. Creating an email subscription Con�rmed email address INTRODUCTION TO AWS BOTO IN PYTHON

  36. Listing subscriptions by Topic sns.list_subscriptions_by_topic( TopicArn='arn:aws:sns:us-east-1:320333787981:city_alerts') INTRODUCTION TO AWS BOTO IN PYTHON

  37. Listing subscriptions INTRODUCTION TO AWS BOTO IN PYTHON

  38. Listing subscriptions sns.list_subscriptions()['Subscriptions'] INTRODUCTION TO AWS BOTO IN PYTHON

  39. Deleting subscriptions sns.unsubscribe( SubscriptionArn='arn:aws:sns:us-east-1:320333787981:city_alerts:9f2dad1d-8844-4fe8-86f ) INTRODUCTION TO AWS BOTO IN PYTHON

  40. Deleting multiple subscriptions Get list of subscriptions response = sns.list_subscriptions_by_topic( TopicArn='arn:aws:sns:us-east-1:320333787981:city_alerts') subs = response['Subscriptions'] Unsubscribe SMS subscriptions for sub in subs: if sub['Protocol'] == 'sms': sns.unsubscribe(sub['SubscriptionArn']) INTRODUCTION TO AWS BOTO IN PYTHON

  41. Review SMS Email Protocol='sms' Protocol='email' Endpoint='+13122334433' Endpoint='email@address.com' Status: 'confirmed' Status: 'confirmed' Status: 'pending confirmation' INTRODUCTION TO AWS BOTO IN PYTHON

  42. Review Create a subscription response = sns.subscribe( TopicArn = 'arn:aws:sns:us-east-1:320333787981:city_alerts', Protocol = 'sms', Endpoint = '+13125551123') List subscriptions by topic response = sns.list_subscriptions_by_topic( TopicArn='arn:aws:sns:us-east-1:320333787981:city_alerts') subs = response['Subscriptions'] INTRODUCTION TO AWS BOTO IN PYTHON

  43. Review List subscriptions sns.list_subscriptions()['Subscriptions'] Delete a subscription sns.unsubscribe( SubscriptionArn='arn:aws:sns:us-east-1:320333787981:city_alerts:9f2dad1d-8844-4fe8-86f ) INTRODUCTION TO AWS BOTO IN PYTHON

  44. Let's practice! IN TRODUCTION TO AW S BOTO IN P YTH ON

  45. Sending messages IN TRODUCTION TO AW S BOTO IN P YTH ON Maksim Pecherskiy Data engineer

  46. Publishing to a Topic response = sns.publish( TopicArn = 'arn:aws:sns:us-east-1:320333787981:city_alerts', Message = 'Body text of SMS or e-mail', Subject = 'Subject Line for Email' ) INTRODUCTION TO AWS BOTO IN PYTHON

  47. Publishing to a Topic INTRODUCTION TO AWS BOTO IN PYTHON

  48. Publishing to a Topic INTRODUCTION TO AWS BOTO IN PYTHON

  49. Sending custom messages num_of_reports = 137 response = client.publish( TopicArn = 'arn:aws:sns:us-east-1:320333787981:city_alerts', Message = 'There are {} reports outstanding'.format(num_of_reports), Subject = 'Subject Line for Email' ) INTRODUCTION TO AWS BOTO IN PYTHON

  50. Sending a single SMS response = sns.publish( PhoneNumber = '+13121233211', Message = 'Body text of SMS or e-mail' ) INTRODUCTION TO AWS BOTO IN PYTHON

  51. Not a good long term practice One-off texts = getting stuff done T opics and subscribers = maintenability INTRODUCTION TO AWS BOTO IN PYTHON

  52. Publish to Topic vs Single SMS Publish to a topic Send a single SMS Have to have a topic Don't need a topic Our topic has to have subscriptions Don't need subscriptions Better for multiple receivers Just sends a message to a phone number Easier list management Email option not available INTRODUCTION TO AWS BOTO IN PYTHON

  53. Review Publish to a topic response = sns.publish( TopicArn = 'arn:aws:sns:us-east-1:320333787981:city_alerts', Message = 'Body text of SMS or e-mail', Subject = 'Subject Line for Email' ) Send a single SMS response = sns.publish( PhoneNumber = '+13121233211', Message = 'Body text of SMS or e-mail' ) INTRODUCTION TO AWS BOTO IN PYTHON

  54. Let's practice! IN TRODUCTION TO AW S BOTO IN P YTH ON

  55. Case Study: Building a noti�cation system IN TRODUCTION TO AW S BOTO IN P YTH ON Maksim Pecherskiy Data Engineer

  56. Final product INTRODUCTION TO AWS BOTO IN PYTHON

  57. Final product INTRODUCTION TO AWS BOTO IN PYTHON

  58. Final product INTRODUCTION TO AWS BOTO IN PYTHON

  59. Final product INTRODUCTION TO AWS BOTO IN PYTHON

  60. Building the noti�cation system Topic Set Up Create the topic Download the contact list csv Create topics for each service Subscribe the contacts to their respective topics INTRODUCTION TO AWS BOTO IN PYTHON

  61. Building the noti�cation system Get the aggregated numbers Download the monthly get it done report Get the count of Potholes Get the count of Illegal dumping noti�cations Send Alerts If potholes exceeds 100, send alert If illegal dumping exceeds 30, send alert INTRODUCTION TO AWS BOTO IN PYTHON

  62. Topic set up Initialize SNS client sns = boto3.client('sns', region_name='us-east-1', aws_access_key_id=AWS_KEY_ID, aws_secret_access_key=AWS_SECRET) Create topics and store their ARNs trash_arn = sns.create_topic(Name="trash_notifications")['TopicArn'] streets_arn = sns.create_topic(Name="streets_notifications")['TopicArn'] INTRODUCTION TO AWS BOTO IN PYTHON

  63. Topic set up INTRODUCTION TO AWS BOTO IN PYTHON

  64. Subscribing users to topics contacts = pd.read_csv('http://gid-staging.s3.amazonaws.com/contacts.csv') INTRODUCTION TO AWS BOTO IN PYTHON

  65. Subscribing users to topics contacts.csv ?Name Email Phone Department John Smith js@fake.com +11224567890 trash Fanny Mae fannyma3@fake.com +11234597890 trash Janessa Goldsmith whoami@fake.com +11534567890 streets Evelyn Monroe Evely@fake.com +11234067890 streets Max Pe max@maksimize.com +11234517890 streets INTRODUCTION TO AWS BOTO IN PYTHON

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend