### Re:Invent 2015
 * [(SPOT301) AWS Innovation at Scale](http://www.slideshare.net/AmazonWebServices/spot301-aws-innovation-at-scale-53890277)
 * [(MBL305) You Have Data from the Devices, Now What?: Getting the Value of the IoT](http://www.slideshare.net/AmazonWebServices/mbl305-you-have-data-from-the-devices-now-what-getting-the-value-of-the-iot)
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/env python | |
| import argparse | |
| import boto3 | |
| import sys | |
| from botocore.exceptions import ClientError | |
| EXCLUDE_REGIONS = [ 'us-gov-west-1', 'cn-north-1' ] # don't try to delete VPCs in these regions | |
| class DefaultVpc(object): | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | INPUT_TEMPLATE_FILE := mytemplate.sam.yaml | |
| ifndef PACKAGE_BUCKET | |
| $(error PACKAGE_BUCKET must be defined (as environment variable)) | |
| endif | |
| OUTPUT_TEMPLATE_FILE := __generated__.yaml | |
| SHELL = /bin/bash | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| # wrapper around "aws cloudformation" CLI to ignore certain pseudo-errors | |
| # aws cloudformation deploy exits with 255 for "No changes to deploy" see: https://github.com/awslabs/serverless-application-model/issues/71 | |
| # this script exits with 0 for that case | |
| STDERR=$(( aws cloudformation "$@" ) 2>&1) | |
| ERROR_CODE=$? | |
| echo ${STDERR} 1>&2 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | My cucumber tests all pass when I run them locally. | |
| When I submit, I get the error: | |
| On Time AutograderSubprocess error: *** FATAL: invalid cucumber results | |
| Did anyone else have this error? Is a problem with the autograder, or something in my code? |