Skip to content

Instantly share code, notes, and snippets.

@vvgsrk
Created January 30, 2019 20:23
Show Gist options
  • Save vvgsrk/5961617eab6b02f1f75e93dfa820e37e to your computer and use it in GitHub Desktop.
Save vvgsrk/5961617eab6b02f1f75e93dfa820e37e to your computer and use it in GitHub Desktop.
AWS Glue Development Endpoint Creation with AWS CLI Commands
# Execute below commands on AWS CLI to create Glue Development Endpoint.
$GLUE_DEV_ENDPOINT_PUBLIC_KEY = Get-Content -Path 'Please_Put_Your_Public_Key_Path'
# Create development endpoint with role and public key
aws glue create-dev-endpoint --endpoint-name any-meaningful-name --role-arn arn:aws:iam::000000000000:role/intended_role --public-key $GLUE_DEV_ENDPOINT_PUBLIC_KEY
# Get the status of endpoint
aws glue get-dev-endpoint --endpoint-name any-meaningful-name
# To Delete the endpoint
aws glue delete-dev-endpoint --endpoint-name any-meaningful-name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment