我正在从使用aws cli命令转换为使用aws go api。在弄清楚如何将参数传递到CreateStackInput调用时遇到麻烦。
这是我尝试使用aws api复制的命令行:
aws cloudformation create-stack --stack-name "poc1841" --template-url "https://s3-us-west-2.amazonaws.com/<path_removed>/cfn-cl-template.json" --parameters file:///params/poc1841.json
params文件如下:
[
{
"ParameterKey":"CNAMEPrefix",
"ParameterValue":"poc1841001"
}]
这是我正在使用的api调用:
input := &cloudformation.CreateStackInput{
TemplateBody: aws.String(templateBody),
StackName: aws.String(stackName),
OnFailure: aws.String("ROLLBACK"),
TimeoutInMinutes: &timeoutInMins }
CreateStackInput确实具有类型为Parameters的Parameters属性。将这些值传递到Parameter字段中,我需要对params json文件进行哪些特殊处理?