2回答
- 新しい順
- 投票が多い順
- コメントが多い順
1
You'll need to use the CFN escape hatch:
const table = new Table(...);
const cfnTable = table.node.defaultChild as CfnTable;
cfnTable.addPropertyOverride('TableInput.Parameters.compressionType', 'none');
回答済み 2年前
関連するコンテンツ
- 質問済み 1年前
- AWS公式更新しました 10ヶ月前
- AWS公式更新しました 2年前
Still not clear how to set something like this for example
TBLPROPERTIES ( 'compression_level'='9', 'write.compression'='ZSTD' )