1. Navigate to your Cloud9 environment 1. Make sure you're in the correct directory first ``` cd ~/environment/aws-serverless-workshops/MachineLearning/2_ModelBuilding ``` 1. Run the following command to create your resources: ``` aws cloudformation create-stack \ --stack-name wildrydes-ml-mod2 \ --capabilities CAPABILITY_NAMED_IAM \ --template-body file://cloudformation/2_sagemaker.yml ``` 1. Monitor the status of your stack creation. **EITHER:** 1. Go to [CloudFormation in the AWS Console](https://console.aws.amazon.com/cloudformation) **OR** 1. Run the following command in Cloud9 until you get `CREATE_COMPLETE` in the output: ``` # Run this command to verify the stack was successfully created. You should expect to see "CREATE_COMPLETE". # If you see "CREATE_IN_PROGRESS", your stack is still being created. Wait and re-run the command. # If you see "ROLLBACK_COMPLETE", pause and see what went wrong. aws cloudformation describe-stacks \ --stack-name wildrydes-ml-mod2 \ --query "Stacks[0].StackStatus" ```