如何通过API重命名AWS VPC对等连接?

时间:2019-01-16 09:13:55

标签: amazon-web-services api amazon-ec2 vpc

我已经接受了AWS VPC对等连接,我想通过AWS API重命名它。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

我找到了答案-使用AWS Groups Tagging API。请求示例:

<head>
    <meta charset="utf-8" />
    <title></title>
    <style>
        .scene-info {
            background-color: red;
        }

        @media screen and (-ms-high-contrast: active) and (min-width: 1200px), screen and (-ms-high-contrast: none) and (min-width: 1200px) {
            .scene-info {
                background-color: palegreen;
            }
        }

        @media screen and (-ms-high-contrast: active) and (max-width: 991px), screen and (-ms-high-contrast: none) and (max-width: 991px) {
            .scene-info {
                left: 1px;
                background-color: aqua;
            }
        }
    </style>
</head>
<body>
    <p>This is a reference p.</p>
    <p class="scene-info">This then, is the test itself.</p>
</body>