作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
AWS CDK 提供了一个 InterfaceVpcEndpoint和一个 VpcEndpoint .这两种构造之间有什么区别?
最佳答案
关于 CDK constructs .您应该知道有 3 个级别的构造:L1(低级别)、L2(常规)和 L3(高级模式)。
InterfaceVpcEndpoint
是用于创建接口(interface) VPC 端点的 L2。 VpcEndpoint
类是一个 support class它是 InterfaceVpcEndpoint
的父级。您可以将 VpcEndpoint
视为介于 L2 和 L1 之间的某个位置。您不应该使用它,甚至不能直接使用它,因为它用于封装接口(interface) VPC 端点和网关 VPC 端点之间的通用功能。
因此,要创建接口(interface)端点,请使用 InterfaceVpcEndpoint
。与创建网关端点类似,使用 GatewayVpcEndpoint
。两者都是 L2 结构。
关于amazon-web-services - AWS CDK 中的 InterfaceVpcEndpoint 与 VpcEndpoint,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68354308/
AWS CDK 提供了一个 InterfaceVpcEndpoint和一个 VpcEndpoint .这两种构造之间有什么区别? 最佳答案 关于 CDK constructs .您应该知道有 3 个级
我是一名优秀的程序员,十分优秀!