
Welcome to Quick Intro To Python 3 for AWS Automation Engine...
14K views · Oct 28, 2022 hands-on.cloud
This video contains the course overview and welcome message to the audience of the https://Hands-On.Cloud portal. Complete course: https://hands-on.cloud/quick-introduction-to-python-for-aws-automation-engineers/

How to setup AWS Cloud9 IDE for Python
24K views · Oct 28, 2022 hands-on.cloud
This AWS tutorial covers how to set up and configure AWS Cloud9 IDE for AWS automation using Python and Boto3 library. Additional materials: https://hands-on.cloud/how-to-setup-cloud9-ide-for-python-for-cloud-automation/

Installing boto3 in AWS Cloud9 IDE
3K views · Oct 28, 2022 hands-on.cloud
This AWS tutorial explains how to set up the boto3 library in Cloud9 IDE in the virtual environment. 00:00 Intro 1:20 Checking IAM credentials (Cloud9 IDE) 1:50 Installing Python virtual environment (Cloud9 IDE) 2:35 Installing boto3 into a virtual environment (Cloud9 IDE) 4:25 Testing boto3 installation (getting AWS User ID, Account ID, IAM role ARN)

Quick intro to Boto3 clients and resources
34K views · Oct 28, 2022 hands-on.cloud
This AWS tutorial describes how the boto3 library is using botocore to interact with AWS services APIs and the differences between boto3 clients and resources. 00:00 Intro 00:49 boto3 client vs resource 15:08 Demo: Using boto3 client 20:14 Demo: Using boto3 resource The full course content is available for you at: https://hands-on.cloud/quick-introduction-to-python-for-aws-automation-engineers/ The supporting blog article is available at: https://hands-on.cloud/introduction-to-boto3-library/

Working with EBS Snapshots in Python using Boto3
2K views · Oct 30, 2022 hands-on.cloud
This video describes how to work with EBS Snapshots in Python using the Boto3 library. The full course content is available for you at: https://hands-on.cloud/quick-introduction-to-python-for-aws-automation-engineers/. The supporting blog article is available at: https://hands-on.cloud/working-with-snapshots-and-amis-using-boto3-in-python/. 00:00 - Intro 00:14 - Prerequisites 00:32 - What is an EBS volume snapshot? 01:17 - EBS volumes, Snapshots, and AMIs 01:37 - How to connect to Amazon EC2 using Boto3? 02:41 - How to create a Snapshot from an EBS volume using Boto3 (no waiter)? 03:00 - How to create a Snapshot from an EBS volume using Boto3 (with waiter)? 03:22 - Listing all EBS snapshots 03:52 - Filter EBS volume snapshots by Account ID 04:26 - Filter EBS volume snapshots by Volume ID 04:46 - Filter EBS volume snapshots by Tag 05:16 - How to describe the EBS volume snapshot? 06:12 - How to delete EBS volume Snapshot using Boto3? 06:45 - How to create an EBS volume from a Snapshot using Boto3? 07:13 - How to create an AMI from a Snapshot using Boto3?

Working with EBS volumes in Python using Boto3
18K views · Oct 29, 2022 hands-on.cloud
This video describes how to work with EBS volumes in Python using Boto 3 library. The full course content is available for you at: https://hands-on.cloud/quick-introduction-to-python-for-aws-automation-engineers/. The supporting blog article is available at: https://hands-on.cloud/working-with-ebs-volumes-in-python/. 0:00 - Introduction 0:14 - Prerequisites 0:32 - What is an EBS volume? 1:14 - EBS volumes, Snapshots, and AMIs 1:45 - How to connect to Amazon EC2 using Boto3? 2:48 - Creating an EBS volume using Boto3 client 3:34 - Creating an EBS volume using Boto3 resource 4:11 - How to list all EC2 volumes using Boto3? 4:27 - Filtering EC2 volumes by Tag 4:39 - Filtering EC2 volumes by ID 4:50 - How to delete EC2 volumes using Boto3? 5:10 - How to describe EBS volumes using Boto3? 5:29 - How to attach EBS volume to EC2 instance using Boto3? 6:04 - How to detach EBS volume from an EC2 instance using Boto3? 6:28 - How to increase the size of the EBS volume using Boto3?

How to assume AWS IAM role using boto3 and Python
4K views · Oct 28, 2022 hands-on.cloud
This video describes how to assume the AWS IAM role using boto3 for your AWS cross-account operations. 00:00 Intro 02:29 Changing Cloud9 IDE role 06:13 Creating IAM role 09:17 Assuming IAM role 14:34 Assuming multiple IAM roles The full course content is available for you at: https://hands-on.cloud/quick-introduction-to-python-for-aws-automation-engineers/. The supporting blog article is available at: https://hands-on.cloud/introduction-to-boto3-library/.

Working with AWS S3 using boto3 and Python
33K views · Oct 28, 2022 hands-on.cloud
This AWS tutorial describes how to use the Python and boto3 library to work with Amazon Simple Storage Service (S3). We'll cover the following topics: 0:00:00 Intro 0:00:56 Listing & filtering AWS S3 buckets 0:16:09 Creating AWS S3 bucket 0:23:17 Deleting AWS S3 bucket 0:28:35 Enable AWS S3 bucket versioning 0:33:00 Upload files/objects to AWS S3 bucket 0:51:00 List and filter objects in AWS S3 bucket 0:59:49 Downloading AWS S3 bucket objects (including folders) 1:13:36 Deleting objects from the AWS S3 bucket (including versions) 1:21:29 Copying and moving objects within the AWS S3 bucket 1:29:11 Generating S3 pre-signed URLs The full course content is available for you at: https://hands-on.cloud/quick-introduction-to-python-for-aws-automation-engineers/ The supporting blog article is available at: https://hands-on.cloud/working-with-s3-in-python-using-boto3/

Python program structure
4K views · Oct 24, 2022 hands-on.cloud
This video covers simple Python program structure: shebang, description, modules, global variables, functions, and program entry point. Related article: https://hands-on.cloud/python-program-structure/

Working with AMIs in Python using Boto3
7K views · Oct 30, 2022 hands-on.cloud
This video covers the most common AMI operations that you might need to automate your AMI operations using Python and the Boto 3 library. The full course content is available for you at: https://hands-on.cloud/quick-introduction-to-python-for-aws-automation-engineers/. The supporting blog article is available at: https://hands-on.cloud/working-with-snapshots-and-amis-using-boto3-in-python/. Boto3 documentation for EC2 client: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ec2.html Boto3 documentation for EC2 resources: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ec2.html#service-resource 00:00 - Intro 00:15 - Prerequisites 00:35 - What is Amazon Machine Image (AMI)? 01:27 - How to connect to Amazon EC2 using Boto3? 02:36 - How to create an AMI from the EC2 instance using Boto3? 03:51 - How to list all AWS AMIs using Boto3? 04:15 - How to search/filter for the AMIs using Boto3? 05:04 - How to describe AWS AMI using Boto3? 05:34 - How to deregister (delete) the AMI using Boto3?

Working with EC2 instances in Python using Boto3
27K views · Nov 3, 2022 hands-on.cloud
This video covers the most common Amazon EC2 operations you might need to automate using Python and the Boto 3 library. The entire free course content is available for you at: https://hands-on.cloud/quick-introduction-to-python-for-aws-automation-engineers/. The supporting blog article is available at: https://hands-on.cloud/working-with-ec2-instances-using-boto3-in-python/. Boto3 documentation for EC2 client: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ec2.html Boto3 documentation for EC2 resources: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ec2.html#service-resource 00:00 - Intro 00:16 - Prerequisites 00:36 - What are Amazon EC2 Instances? 01:23 - How to connect to Amazon EC2 using Boto3? 02:31 - How to create the Amazon EC2 instance using Boto3? 04:44 - How to list all Amazon EC2 instances using Boto3? 05:36 - How to filter Amazon EC2 instances by the state? 06:13 - How to filter Amazon EC2 instances by type? 06:28 - How to filter Amazon EC2 instances by AWS tag? 06:49 - How to filter Amazon EC2 instances by the EC2 instance ID? 07:03 - How to describe Amazon EC2 instances? 07:40 - How to list all Amazon EC2 instance volumes? 08:07 - How to get the Amazon EC2 instance state? 08:24 - How to add AWS tags to the Amazon EC2 instance? 09:09 - How to list AWS tags of the Amazon EC2 instance? 09:53 - How to update the AWS tags of the Amazon EC2 instance? 10:08 - How to delete AWS tags of the Amazon EC2 instance? 10:41 - How to enable/disable Amazon EC2 instance detailed monitoring? 11:08 - How to start an Amazon EC2 instance using Boto3? 11:22 - How to stop an Amazon EC2 instance using Boto3? 11:50 - How to reboot an Amazon EC2 instance using Boto3? 12:02 - How to terminate (delete) an Amazon EC2 instance using Boto3? 12:18 - How to change an Amazon EC2 instance type using Boto3? 12:48 - How to create an SSH key for the Amazon EC2 instance using Boto3? 13:16 - How to list SSH keys in the Amazon EC2 service using Boto3? 13:36 - How to search/filter SSH keys by name using Boto3? 14:01 - How to search/filter SSH keys by the tag using Boto3? 14:21 - How to delete SSH keys using Boto3? 14:41 - How to create an Amazon EC2 Security Group using Boto3? 15:55 - How to list all Amazon EC2 Security Groups using Boto3? 16:06 - How to filter Amazon EC2 Security Groups by ID using Boto3? 16:22 - How to describe Amazon EC2 Security Groups using Boto3? 16:44 - How to delete Amazon EC2 Security Groups using Boto3? 16:53 - How to attach Amazon EC2 Security Groups to the EC2 instances using Boto3? 17:12 - How to list Amazon EC2 Security Groups of the EC2 instance using Boto3? 17:25 - How to detach the Amazon EC2 Security Group from the EC2 instance using Boto3? 17:45 - How to allocate an Elastic IP address using Boto3? 18:44 - How to filter and describe Elastic IP addresses using Boto3? 19:16 - How to detach the Elastic IP address from the EC2 instance using Boto3? 19:36 - How to release the Elastic IP address using Boto3?

Working with Secrets Manager in Python using Boto3
11K views · Nov 3, 2022 hands-on.cloud
This video covers the most common AWS Secrets Manager operations you might need to automate using Python and the Boto 3 library. The entire free course content is available for you at: https://hands-on.cloud/quick-introduction-to-python-for-aws-automation-engineers/. The supporting blog article is available at: https://hands-on.cloud/working-with-secrets-manager-in-python-using-boto3/. Boto3 documentation for EC2 client: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ec2.html Boto3 documentation for EC2 resources: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ec2.html#service-resource 00:00 - Intro 00:17 - Prerequisites 00:36 - What is AWS Secrets Manager? 01:23 - AWS Parameter Store vs. AWS Secrets Manager 03:45 - How to create a secret in AWS Secrets Manager using Boto3? 05:03 - How to list secrets in AWS Secrets Manager using Boto3? 05:24 - How to retrieve a secret value from AWS Secrets Manager using Boto3? 05:49 - How to update an existing secret in AWS Secrets Manager using Boto3? 06:05 - How to delete a secret in AWS Secrets Manager using Boto3? 06:35 - How to restore a deleted secret in AWS Secrets Manager using Boto3?

Working with DynamoDB in Python using Boto3
17K views · Nov 10, 2022 hands-on.cloud
This video demonstrates how to create tables, load data, perform CRUD operations, filter scan results, query items, and backup tables in AWS DynamoDB using Python and Boto3 library. The entire course content is available for you at: https://hands-on.cloud/quick-introduction-to-python-for-aws-automation-engineers/. The supporting blog article is available at: https://hands-on.cloud/working-with-dynamodb-in-python-using-boto3/. AWS re:Invent: Data modeling with Amazon DynamoDB – Part 1: https://youtu.be/fiP2e-g-r4g AWS re:Invent: Data modeling with Amazon DynamoDB – Part 2: https://youtu.be/_KNrRdWD25M Boto3 documentation for DynamoDB: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html Amazon DynamoDB Developer's Guide: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/GettingStartedDynamoDB.html 00:00 - Intro 00:18 - Prerequisites 00:36 - What is Amazon DynamoDB? 02:16 - How to connect to Amazon DynamoDB using Boto3? 02:38 - How to create Amazon DynamoDB tables using Boto3? 04:22 - How to list Amazon DynamoDB tables using Boto3? 04:39 - How to create an item in the Amazon DynamoDB table using Boto3? 05:30 - How to write items in batches to the Amazon DynamoDB table using Boto3? 06:55 - How to read an item from the Amazon DynamoDB table using Boto3? 07:14 - How to read multiple items from the Amazon DynamoDB table using Boto3 (scan)? 07:43 - How to read multiple items from the Amazon DynamoDB table using Boto3 (scan and filter)? 08:24 - How to update items in the Amazon DynamoDB table using Boto3? 09:35 - How to delete items in the Amazon DynamoDB table using Boto3? 09:55 - How to query items in the Amazon DynamoDB table using Boto3? 10:33 - How to create Global Secondary Index (GSI) in the Amazon DynamoDB table using Boto3? 11:47 - How to query the Amazon DynamoDB table by Global Secondary Index using Boto3? 12:15 - How to backup the Amazon DynamoDB table using Boto3? 12:28 - How to delete the Amazon DynamoDB table using Boto3?

Working with AWS IAM in Python using Boto3
10K views · Nov 14, 2022 hands-on.cloud
This video demonstrates how to use Python and the Boto3 library to manage AWS IAM Policies, Roles, Groups, Users, instances profiles, and work with the IAM credentials. The entire course content is available for you at: https://hands-on.cloud/quick-introduction-to-python-for-aws-automation-engineers/. The supporting blog article is available at: https://hands-on.cloud/working-with-iam-in-python-using-boto3/. This video has been created using Synthesia: https://hands-on.cloud/recommends/synthesia-io/. Boto3 documentation for AWS IAM: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/iam.html AWS IAM Users Guide: https://docs.aws.amazon.com/IAM/latest/UserGuide/introduction.html 00:00 - Intro 00:19 - Prerequisites 00:38 - What is AWS Identity Access Manager (IAM)? 02:11 - How to connect to AWS IAM using Boto3? 02:38 - How to create Amazon DynamoDB tables using Boto3? 02:32 - How to create an AWS IAM policy using Boto3? 05:01 - How to list AWS IAM policies using Boto3? 05:19 - How to list AWS IAM policies using Boto3? 05:45 - How to filter AWS IAM policies using Boto3? 06:32 - How to describe AWS IAM policy using Boto3? 06:54 - How to delete AWS IAM policy using Boto3? 07:16 - How to attach the IAM policy to the AWS IAM role using Boto3? 07:25 - How to detach the IAM policy from the AWS IAM role using Boto3? 07:40 - How to create an AWS IAM role using Boto3? 09:25 - How to list AWS IAM roles using Boto3? 09:33 - How to filter AWS IAM roles using Boto3? 09:47 - How to describe the AWS IAM role using Boto3? 10:04 - How to delete the AWS IAM role using Boto3? 10:18 - How to create an AWS IAM group using Boto3? 10:45 - How to list AWS IAM groups using Boto3? 11:01 - How to filter AWS IAM groups using Boto3? 11:15 - How to describe AWS IAM groups using Boto3? 11:25 - How to delete the AWS IAM group using Boto3? 11:32 - How to create an AWS IAM instance profile using Boto3? 11:58 - How to add an AWS IAM role to the EC2 instance profile using Boto3? 12:07 - How to list AWS IAM instance profiles using Boto3? 12:15 - How to filter AWS IAM instance profiles using Boto3? 12:31 - How to describe the AWS IAM instance profile using Boto3? 12:45 - How to delete the AWS IAM instance profile using Boto3? 13:24 - How to attach the AWS IAM instance profile to the EC2 instance using Boto3? 13:40 - How to detach the AWS IAM instance profile to the EC2 instance using Boto3? 14:11 - How to create an AWS IAM user using Boto3? 14:27 - How to list AWS IAM users using Boto3? 14:36 - How to filter AWS IAM users using Boto3? 14:47 - How to describe AWS IAM users using Boto3? 15:08 - How to delete an AWS IAM user using Boto3? 15:39 - How to add an AWS IAM user to the group using Boto3? 15:47 - How to remove the AWS IAM user from the group using Boto3? 15:55 - How to attach the AWS IAM policy to the user using Boto3? 16:04 - How to detach the AWS IAM policy from the user using Boto3? 16:02 - How to change the AWS IAM user password using Boto3? 16:37 - How to create AWS IAM user AWS access keys using Boto3? 17:03 - How to list AWS IAM user AWS access keys using Boto3? 17:15 - How to delete AWS IAM user AWS access keys using Boto3? 17:25 - How to create an AWS IAM user login profile using Boto3? 17:52 - How to generate AWS IAM credentials report using Boto3?

Working with AWS Lambda in Python using Boto3
29K views · Nov 17, 2022 hands-on.cloud
This video demonstrates how to work with AWS Lambda service using Python SDK for AWS (Boto3 library) to deploy AWS Lambda functions, update and invoke them, and manage Lambda permissions for other AWS services. The entire course content is available for you at: https://hands-on.cloud/quick-introduction-to-python-for-aws-automation-engineers/. The supporting blog article is available at: https://hands-on.cloud/working-with-aws-lambda-in-python-using-boto3/. This video has been created using Synthesia: https://hands-on.cloud/recommends/synthesia-io/. Boto3 documentation for AWS Lambda: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda.html 00:00 - Intro 00:23 - Prerequisites 00:42 - What is AWS Lambda? 02:15 - How to connect to AWS Lambda API using Boto3? 02:42 - How to create AWS Lambda using Boto3? 04:35 - How to create AWS Lambda from the source code using Boto3? 05:13 - How to invoke the AWS Lambda function using Boto3? 05:49 - How to create the AWS Lambda function version using Boto3? 06:55 - How to create the AWS Lambda function version alias using Boto3? 07:49 - How to list AWS Lambda function version aliases using Boto3? 08:11 - How to describe the AWS Lambda function using Boto3? 08:41 - How to update the AWS Lambda function using Boto3? 08:58 - How to delete the AWS Lambda function using Boto3?

Working with SNS in Python using Boto3
7K views · Nov 18, 2022 hands-on.cloud
This video demonstrates how to work with Amazon Simple Notification Service (or Amazon SNS) using Python SDK for AWS (Boto3 library). We'll demonstrate how to create, describe, list, and delete SNS topics, manage SNS topic subscriptions and send messages to the topic. The entire course content is available for you at: https://hands-on.cloud/quick-introduction-to-python-for-aws-automation-engineers/. The supporting blog article is available at: https://hands-on.cloud/working-with-sns-in-python-using-boto3/. This video has been created using Synthesia: https://hands-on.cloud/recommends/synthesia-io/. Boto3 documentation for Amazon SNS: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sns.html 00:00 - Intro 00:27 - Prerequisites 00:46 - What is Amazon Simple Notification Service (Amazon SNS)? 02:08 - How to connect to AWS Lambda API using Boto3? 02:29 - How to create an Amazon SNS topic using Boto3? 03:37 - How to list Amazon SNS topics using Boto3? 04:47 - How to list Amazon SNS topic attributes using Boto3? 05:25 - How to set Amazon SNS topic policy using Boto3? 06:19 - How to publish a message to an Amazon SNS topic using Boto3? 07:06 - How to delete an Amazon SNS topic using Boto3? 07:26 - How to create an Amazon SNS topic subscription using Boto3? 08:18 - How to list Amazon SNS topic subscriptions using Boto3? 09:03 - How to delete an Amazon SNS topic subscription using Boto3?

Working with Amazon SES in Python using Boto3
4K views · Nov 18, 2022 hands-on.cloud
This video demonstrates how to interact with Amazon SES in Python using the Boto3 library to verify sender domain names and email addresses, manage email templates, and send emails in different formats. The entire course content is available for you at: https://hands-on.cloud/quick-introduction-to-python-for-aws-automation-engineers/. The supporting blog article is available at: https://hands-on.cloud/working-with-amazon-ses-in-python/. This video has been created using Synthesia: https://hands-on.cloud/recommends/synthesia-io/. Boto3 documentation for AWS Lambda: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ses.html 00:00 - Intro 00:18 - Prerequisites 00:37 - What is Amazon Simple Email Service (Amazon SES)? 02:00 - Amazon SES Sandbox mode 02:58 - How to connect to Amazon SES API using Boto3? 03:25 - How to verify the domain name in Amazon SES using Boto3? 04:15 - How to verify the sender email in Amazon SES using Boto3? 04:48 - How to list Amazon SES identities using Boto3? 05:07 - How to delete Amazon SES identity using Boto3? 05:24 - How to create an Amazon SES email template using Boto3? 05:56 - How to describe the Amazon SES email template using Boto3? 06:11 - How to list Amazon SES email templates using Boto3? 06:24 - How to update the Amazon SES email template using Boto3? 06:41 - How to delete the Amazon SES email template using Boto3? 06:53 - How to send a templated email from Amazon SES using Boto3? 07:55 - How to send a plain-text email from Amazon SES using Boto3? 08:12 - How to send raw email from Amazon SES using Boto3?

Working with AWS Systems Manager Parameter Store in Python u...
12K views · Nov 16, 2022 hands-on.cloud
This video demonstrates how to use the Boto3 library to manage AWS Systems Manager (AWS SSM) Parameter Store. The entire course content is available for you at: https://hands-on.cloud/quick-introduction-to-python-for-aws-automation-engineers/. The supporting blog article is available at: https://hands-on.cloud/working-with-parameter-store-in-python/. This video has been created using Synthesia: https://hands-on.cloud/recommends/synthesia-io/. Boto3 documentation for AWS SSM Parameter Store: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm.html 00:00 - Intro 00:17 - Prerequisites 00:35 - What is AWS Systems Manager (AWS SSM) Parameter Store? 02:25 - How to connect to AWS Systems Manager (AWS SSM) Parameter Store using Boto3? 02:55 - How to create a String parameter in AWS SSM Parameter Store using Boto3? 04:12 - How to create a StringList parameter in AWS SSM Parameter Store using Boto3? 04:29 - How to create a SecureString parameter in AWS SSM Parameter Store using Boto3? 05:04 - How to read a parameter from AWS SSM Parameter Store using Boto3? 05:25 - How to describe a parameter from AWS SSM Parameter Store using Boto3? 05:49 - How to list parameters from AWS SSM Parameter Store using Boto3? 06:34 - How to label parameter version in AWS SSM Parameter Store using Boto3? 07:41 - How to unlabel parameter version in AWS SSM Parameter Store using Boto3? 07:53 - How to delete parameter from AWS SSM Parameter Store using Boto3?

Working with Amazon CloudWatch in Python using Boto3
7K views · Nov 20, 2022 hands-on.cloud
This video how to manage CloudWatch logs, metrics, alarms, and dashboards in Python using the Boto3 library. The entire course content is available for you at: https://hands-on.cloud/quick-introduction-to-python-for-aws-automation-engineers/. The supporting blog article is available at: https://hands-on.cloud/working-with-cloudwatch-in-python-using-boto3/. This video has been created using Synthesia: https://hands-on.cloud/recommends/synthesia-io/. Boto3 documentation for Amazon CloudWatch (Logs): https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/logs.html Boto3 documentation for Amazon CloudWatch (Events, Alarms): https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/cloudwatch.html Boto3 documentation for Amazon EverntBridge: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/events.html 00:00 - Intro 00:16 - Prerequisites 00:34 - What is Amazon CloudWatch? 02:46 - How to connect to Amazon CloudWatch Logs using Boto3? 03:13 - How to create a CloudWatch Log Group? 03:53 - How to list Amazon CloudWatch Log Groups using Boto3? 04:22 - How to filter Amazon CloudWatch Log Groups using Boto3? 04:45 - How to send logs to Amazon CloudWatch using Boto3? 05:25 - How to read logs from Amazon CloudWatch using Boto3? 05:51 - How to update Amazon CloudWatch Log Group using Boto3? 06:19 - How to delete Amazon CloudWatch Log Group using Boto3? 06:35 - How to connect to Amazon CloudWatch Metrics using Boto3? 07:19 - How to send Metrics to Amazon CloudWatch using Boto3? 07:50 - How to list Metrics in Amazon CloudWatch using Boto3? 08:10 - How to filter Metrics in Amazon CloudWatch using Boto3? 08:31 - How to get Metrics from Amazon CloudWatch using Boto3? 09:01 - How to delete Metrics from Amazon CloudWatch using Boto3? 09:10 - How to create an Amazon CloudWatch Alarm using Boto3? 10:31 - How to update the Amazon CloudWatch Alarm using Boto3? 10:45 - How to delete the Amazon CloudWatch Alarm using Boto3? 10:59 - How to create Amazon CloudWatch/EventBridge Event rule using Boto3? 11:33 - How to filter Amazon CloudWatch/EventBridge Event rules using Boto3? 11:51 - How to create Amazon CloudWatch Dashboard using Boto3? 12:52 - How to update Amazon CloudWatch Dashboard using Boto3? 13:18 - How to delete Amazon CloudWatch Dashboard using Boto3?

Convert PowerPoint to video using Synthesia and Google Cloud
2K views · Nov 21, 2022 hands-on.cloud
This video reviews the Synthesia AI video-generating platform and describes how to automate the process of converting PowerPoint slides to a professional video tutorial using Python, Synthesia, and Google Cloud Platform (Google Drive and Google Slides) APIs. Synthesia AI (affiliate link): https://hands-on.cloud/recommends/synthesia-io/ Google Cloud Platform (affiliate link), sign up today to receive $350 in free credits and free usage of 20+ products on Google Cloud: https://hands-on.cloud/recommends/google-cloud-join-google-cloud/. The complete automation script source code (Python) is available at: https://hands-on.cloud/convert-powerpoint-to-video-using-synthesia-and-google-cloud/. 00:00 - Into 01:26 - Synthesia automation demo 04:30 - Problems of professional educational video production 07:13 - From hiring people to using technology 09:20 - Synthesia overview 10:00 - Synthesia pricing 10:34 - Synthesia Studio overview 11:02 - Personal plan limitations 12:19 - How to convert PowerPoint to AI video (a manual process) 20:11 - Video generation process 20:37 - Video generation results 21:50 - Manual workflow pain 23:27 - Synthesia API overview 29:08 - Using Synthesia Templates for automation 30:33 - Synthesia Templates API limitations 34:28 - Existing Python libraries to work with PowerPoint 35:54 - Google Cloud Platform for working with PowerPoint 38:37 - Python script for automation (overview) 47:18 - Automation results 48:44 - Summary