Skip to content

Commit cfd9fc1

Browse files
authored
Update athena_ml_workflow_end_to_end.ipynb
Fixed bucket names and external links. No change to underlying code or formatting.
1 parent 4f6b1f6 commit cfd9fc1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

use-cases/athena_ml_workflow_end_to_end/athena_ml_workflow_end_to_end.ipynb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
"\n",
3333
"For information about creating a bucket, see [Creating a bucket](https://docs.aws.amazon.com/AmazonS3/latest/userguide/create-bucket-overview.html). For information about creating a database, see [Create a database](https://docs.aws.amazon.com/athena/latest/ug/getting-started.html#step-1-create-a-database).\n",
3434
"\n",
35-
"Amazon Athena uses the AWS Glue Data Catalog to read the data from Amazon S3 into a database. You must have permissions to use Glue. To clean up, you also need permissions to delete the bucket you've created. For a quick guide to providing permissions, see [Setting up\n",
36-
"](http://parsash-clouddesk-2024.aka.corp.amazon.com/sagemaker-dg/src/AWSIronmanApiDoc/build/server-root/sagemaker/latest/dg/create-end-to-end-ml-workflow-athena.html#setting-up)."
35+
"Amazon Athena uses the AWS Glue Data Catalog to read the data from Amazon S3 into a database. You must have permissions to use Glue. To clean up, you also need permissions to delete the bucket you've created. For information about providing permissions, see [Identity and access management for AWS Glue\n",
36+
"](https://docs.aws.amazon.com/glue/latest/dg/security-iam.html)."
3737
]
3838
},
3939
{
@@ -911,15 +911,15 @@
911911
" outputs=[\n",
912912
" ProcessingOutput(\n",
913913
" source=\"/opt/ml/processing/output/train\",\n",
914-
" destination=\"s3://ux360-nyc-taxi-dogfooding/output/train\",\n",
914+
" destination=\"s3://example-s3-bucket/output/train\",\n",
915915
" ),\n",
916916
" ProcessingOutput(\n",
917917
" source=\"/opt/ml/processing/output/validation\",\n",
918-
" destination=\"s3://ux360-nyc-taxi-dogfooding/output/validation\",\n",
918+
" destination=\"s3://example-s3-bucket/output/validation\",\n",
919919
" ),\n",
920920
" ProcessingOutput(\n",
921921
" source=\"/opt/ml/processing/output/test\",\n",
922-
" destination=\"s3://ux360-nyc-taxi-dogfooding/output/test\",\n",
922+
" destination=\"s3://example-s3-bucket/output/test\",\n",
923923
" ),\n",
924924
" ],\n",
925925
")"
@@ -941,7 +941,7 @@
941941
"outputs": [],
942942
"source": [
943943
"# Verify that train.csv is in the location that you've specified\n",
944-
"!aws s3 ls s3://ux360-nyc-taxi-dogfooding/output/train/train.csv"
944+
"!aws s3 ls s3://example-s3-bucket/output/train/train.csv"
945945
]
946946
},
947947
{
@@ -960,7 +960,7 @@
960960
"outputs": [],
961961
"source": [
962962
"# Verify that val.csv is in the location that you've specified\n",
963-
"!aws s3 ls s3://ux360-nyc-taxi-dogfooding/output/validation/val.csv"
963+
"!aws s3 ls s3://example-s3-bucket/output/validation/val.csv"
964964
]
965965
},
966966
{

0 commit comments

Comments
 (0)