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 年前
相关内容
- AWS 官方已更新 2 年前