0

我想在 CDK 打字稿中创建一个 VPC 对等请求,但是,它不只是创建一个挂起的请求,而是尝试直接接受它。我可以在不立即接受的情况下创建请求吗?

const connection = new CfnVPCPeeringConnection(
this, 
'xyzzy', 
{   
    peerOwnerId: '1234',
    peerVpcId: 'abc',
    vpcId: vpc.vpcId,
});
4

0 回答 0