1 個回答
- 最新
- 最多得票
- 最多評論
0
Based on this AWS CLI example you can use the create_table() to create a resource link. Just populate the TargetTable section.
AWS CLI
aws glue create-table --database-name myissues --table-input '{"Name":"mycustomers","TargetTable":{"CatalogId":"111122223333","DatabaseName":"issues","Name":"customers"}}'
Boto3 (Just the TargetTable section, refer create_table() for details)
'TargetTable': {
'CatalogId': '111122223333',
'DatabaseName': 'issues',
'Name': 'customers'
}
已回答 2 年前
相關內容
- 已提問 1 年前
- AWS 官方已更新 2 年前