| OLD | NEW |
| 1 .. _vpc_tut: | 1 .. _vpc_tut: |
| 2 | 2 |
| 3 ======================================= | 3 ======================================= |
| 4 An Introduction to boto's VPC interface | 4 An Introduction to boto's VPC interface |
| 5 ======================================= | 5 ======================================= |
| 6 | 6 |
| 7 This tutorial is based on the examples in the Amazon Virtual Private | 7 This tutorial is based on the examples in the Amazon Virtual Private |
| 8 Cloud Getting Started Guide (http://docs.amazonwebservices.com/AmazonVPC/latest/
GettingStartedGuide/). | 8 Cloud Getting Started Guide (http://docs.amazonwebservices.com/AmazonVPC/latest/
GettingStartedGuide/). |
| 9 In each example, it tries to show the boto request that correspond to | 9 In each example, it tries to show the boto request that correspond to |
| 10 the AWS command line tools. | 10 the AWS command line tools. |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 u'pending' | 79 u'pending' |
| 80 >>> vg.availability_zone | 80 >>> vg.availability_zone |
| 81 u'us-east-1b' | 81 u'us-east-1b' |
| 82 >>> | 82 >>> |
| 83 | 83 |
| 84 Attaching a VPN Gateway to a VPC | 84 Attaching a VPN Gateway to a VPC |
| 85 -------------------------------- | 85 -------------------------------- |
| 86 | 86 |
| 87 >>> vg.attach(vpc.id) | 87 >>> vg.attach(vpc.id) |
| 88 >>> | 88 >>> |
| OLD | NEW |