Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/@aws-cdk/aws-s3tables-alpha/lib/permissions.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// Table Bucket
// Read priveleges
// Read privileges
export const TABLE_BUCKET_READ_ACCESS = [
's3tables:Get*',
's3tables:ListNamespaces',
's3tables:ListTables',
];

// Write priveleges
// Write privileges
export const TABLE_BUCKET_WRITE_ACCESS = [
's3tables:PutTableData',
's3tables:UpdateTableMetadataLocation',
Expand All @@ -23,11 +23,11 @@ export const TABLE_BUCKET_READ_WRITE_ACCESS = [...new Set([
])];

// Table
// Read priveleges
// Read privileges
export const TABLE_READ_ACCESS = [
's3tables:Get*',
];
// Write priveleges
// Write privileges
export const TABLE_WRITE_ACCESS = [
's3tables:PutTableData',
's3tables:UpdateTableMetadataLocation',
Expand Down
Loading