From baadcbacc5c775ad6316f74b1e66e535fb9b95dc Mon Sep 17 00:00:00 2001 From: Paul Cornell Date: Thu, 7 Nov 2024 10:06:52 -0800 Subject: [PATCH] Delta Table destination connector: S3 bucket creation and bucket policy scripts --- snippets/general-shared-text/delta-table.mdx | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/snippets/general-shared-text/delta-table.mdx b/snippets/general-shared-text/delta-table.mdx index 8872536d..c4993b8e 100644 --- a/snippets/general-shared-text/delta-table.mdx +++ b/snippets/general-shared-text/delta-table.mdx @@ -72,4 +72,22 @@ For more information about prerequisites, see the following: - If the target files are in the root of the bucket, the path to the bucket, formatted as `protocol://bucket/` (for example, `s3://my-bucket/`). If the target files are in a folder, the path to the target folder in the S3 bucket, formatted as `protocol://bucket/path/to/folder/` (for example, `s3://my-bucket/my-folder/`). - If the target files are in a folder, make sure the authenticated AWS IAM user has - authenticated access to the folder as well. [Enable authenticated folder access](https://docs.aws.amazon.com/AmazonS3/latest/userguide/example-bucket-policies.html#example-bucket-policies-folders). \ No newline at end of file + authenticated access to the folder as well. [Enable authenticated folder access](https://docs.aws.amazon.com/AmazonS3/latest/userguide/example-bucket-policies.html#example-bucket-policies-folders). + +## Add an access policy to an existing bucket + +import S3BucketPolicy from '/snippets/general-shared-text/s3-bucket-policy.mdx'; + + + +## Create a bucket with AWS CloudFormation + +import S3BucketCloudFormation from '/snippets/general-shared-text/s3-cf-setup.mdx'; + + + +## Create a bucket with the AWS CLI + +import S3BucketCLI from '/snippets/general-shared-text/s3-cli-setup.mdx'; + + \ No newline at end of file