Created
January 30, 2019 20:23
-
-
Save vvgsrk/5961617eab6b02f1f75e93dfa820e37e to your computer and use it in GitHub Desktop.
AWS Glue Development Endpoint Creation with AWS CLI Commands
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
# 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