Book Image

AWS Tools for PowerShell 6

By : Ramesh Waghmare
Book Image

AWS Tools for PowerShell 6

By: Ramesh Waghmare

Overview of this book

AWS Tools for PowerShell 6 shows you exactly how to automate all the aspects of AWS. You can take advantage of the amazing power of the cloud, yet add powerful scripts and mechanisms to perform common tasks faster than ever before. This book expands on the Amazon documentation with real-world, useful examples and production-ready scripts to automate all the aspects of your new cloud platform. It will cover topics such as managing Windows with PowerShell, setting up security services, administering database services, and deploying and managing networking. You will also explore advanced topics such as PowerShell authoring techniques, and configuring and managing storage and content delivery. By the end of this book, you will be able to use Amazon Web Services to automate and manage Windows servers. You will also have gained a good understanding of automating the AWS infrastructure using simple coding.
Table of Contents (17 chapters)

EBS snapshots

EBS snapshots are point-in-time copy of your EBS volumes and provide you with disaster recovery solutions for your EBS volumes. You can think of snapshots as full and incremental backups of your EBS volumes. When you create a snapshot of the EBS volume, only the data that is changed since the last snapshot is stored in the new S3 snapshot. In this way, it is an incremental backup. When you use a snapshot to restore the data, all the data from the snapshot is restored as well as all the data from the previous snapshot. This way, it is a full backup. Internally, EBS snapshots are chained together. Snapshots are stored in Amazon S3. However, you do not find your snapshot in any one of the S3 buckets. AWS just makes use of the Amazon S3 infrastructure to store your snapshot, but you cannot access them while they reside in S3.

You can do a number of things with the EBS...