我有一个自定义AMI。我想使用boto3基于该AMI创建一个EMR群集。我检查了文档,找到了CLI版本,但没有找到有关boto3版本的信息。
CLI版本:
aws emr create-cluster --name "Cluster with My Custom AMI" \
--custom-ami-id MyAmiID --ebs-root-volume-size 20 \
--release-label emr-5.7.0 --use-default-roles \
--instance-count 2 --instance-type m5.xlarge
有人能帮忙吗?谢谢。
1条答案
按热度按时间ulydmbyx1#
在boto3中,您可以使用run_job_flow创建新集群:
RunJobFlow创建并开始运行新群集(作业流)。