gpt4 book ai didi

amazon-web-services - AWS 云信息 :Template validation error

转载 作者:行者123 更新时间:2023-12-03 07:19:29 24 4
gpt4 key购买 nike

我正在使用以下模板通过 cloudformation 创建作业定义。当我上传此模板时,出现错误:

“模板验证错误:模板属性无效 [JobDefinition]”

我的模板中是否遗漏了某些内容?

{
"JobDefinition": {
"Type": "AWS::Batch::JobDefinition",
"Properties": {
"Type": "container",
"JobDefinitionName" : "filedownload",
"ContainerProperties": {
"Image": "abc",
"Vcpus": 4,
"Memory": 2000,
"JobRoleArn": "arn:aws:iam::********:role/batchjobRole",
"ReadonlyRootFilesystem": true,
"Privileged": true
},
"RetryStrategy" : {"attempts": 1}
}
}
}

最佳答案

您需要将“JobDefinition”放入“Resources”中。例如:

{
"Resources": {
"JobDefinition": {
"Type": "AWS::Batch::JobDefinition",
"Properties": {
"Type": "container",
"JobDefinitionName" : "filedownload",
"ContainerProperties": {
"Image": "abc",
"Vcpus": 4,
"Memory": 2000,
"JobRoleArn": "arn:aws:iam::********:role/batchjobRole",
"ReadonlyRootFilesystem": true,
"Privileged": true
},
"RetryStrategy" : {"attempts": 1}
}
}
}
}

关于amazon-web-services - AWS 云信息 :Template validation error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47105027/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com