我正在通过Java SDK创建VPC,并且能够成功创建。但是我无法设置VPC的名称。这是下面的代码。

CreateVpcRequest newVPC = new CreateVpcRequest().withCidrBlock("10.1.0.0/16");
CreateVpcResult res = ec2.createVpc(newVPC);


这样会创建但我无法使用VPC对象类型设置VPC的名称

             Vpc vpc = new Vpc();
             vpc.setCidrBlock("10.0.0.0/16");

                List<Tag> tags = new ArrayList<Tag>();
                Tag newTag = new Tag();
                newTag.setKey("Name");
                newTag.setValue("MyVPC");
                tags.add(newTag);
                vpc.setTags(tags);


我也无法通过ModifyVpcAttributeRequest看到其中的任何setname或tag属性。

任何线索或帮助将不胜感激。

谢谢,

最佳答案

找出答案。应该使用createtagsrequest api

        CreateTagsRequest createTagsRequest = new CreateTagsRequest();
        createTagsRequest.setTags(tags);
        createTagsRequest.withResources(vpcres.getVpc().getVpcId()) ;
        ec2.createTags(createTagsRequest);

10-07 15:34