Last active
September 7, 2019 18:40
-
-
Save vanbrands/6c00baf560d274392ec4d34eac8dd608 to your computer and use it in GitHub Desktop.
pub_cloudformation_notebook
This file contains 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
AWSTemplateFormatVersion: '2010-09-09' | |
Description: 'Cloudformation simples para subir um notebook no Sagemaker' | |
Resources: | |
NotebookTutorial: | |
Type: AWS::SageMaker::NotebookInstance | |
Properties: | |
NotebookInstanceName: "Notebook Tutorial" | |
InstanceType: ml.t2.medium | |
RoleArn: String | |
VolumeSizeInGB: 20 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment