0

我正在寻找对流层的输出看起来像这样(json)。我根本找不到任何例子来指出我正确的方向。将来如果我遇到类似的问题,是否有任何我应该特别参考的文档?

"NetworkInterfaces": [
          {
            "DeleteOnTermination": "true",
            "Description": "Primary network interface",
            "DeviceIndex": 0,
            "SubnetId": "subnet-yolo",
            "PrivateIpAddresses": [
              {
                "PrivateIpAddress": "xxx.xx.xx.xx",
                "Primary": "true"
              }
            ],
            "GroupSet": [
              "xxxxxx",
              "yyyyyy"
            ]
          }
        ]
4

1 回答 1

0

答案很基本。首先我们需要像这样制作一个sample_ip

sample_ip = template.add_parameter(ec2.PrivateIpAddressSpecification(
    "PrivateIpAddress",
    Primary="true",
    PrivateIpAddress="172.168.1.1"
))

然后这样做:

PrivateIpAddresses=[Ref(sample_ip)]

我会把这个留在这里,以防像我这样的超级初学者不能自己做到这一点。

于 2017-07-04T11:52:42.037 回答