AWS. 网络。 InternetGateway - AWS 电信网络生成器

本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。

AWS. 网络。 InternetGateway

定义 AWS Internet Gateway 节点。

语法

tosca.nodes.AWS.Networking.InternetGateway: capabilities: routing: properties: dest_cidr: String ipv6_dest_cidr: String properties: tags: List egress_only: Boolean requirements: vpc: String route_table: String

功能

routing

在中定义路由连接的属性VPC。必须包括 dest_cidripv6_dest_cidr 属性。

dest_cidr

用于目标匹配的方IPv4CIDR块。此属性用于在 RouteTable 中创建路由,其值用作 DestinationCidrBlock

必需:如果包含 ipv6_dest_cidr 属性,则为“否”。

类型:字符串

ipv6_dest_cidr

用于目标匹配的方IPv6CIDR块。

必需:如果包含 dest_cidr 属性,则为“否”。

类型:字符串

属性

tags

要附加到资源的标签。

必需:否

类型:列表

egress_only

一个IPv6特定的属性。表示互联网网关是否仅用于出口通信。如果 egress_only 为 true,则必须定义 ipv6_dest_cidr 属性。

必需:否

类型:布尔值

要求

vpc

一个 AWS.Networking VPC节点。

必需:是

类型:字符串

route_table

一个 AWS.Networking RouteTable节点。

必需:是

类型:字符串

示例

Free5GCIGW: type: tosca.nodes.AWS.Networking.InternetGateway properties: egress_only: false capabilities: routing: properties: dest_cidr: "0.0.0.0/0" ipv6_dest_cidr: "::/0" requirements: route_table: Free5GCRouteTable vpc: Free5GCVPC Free5GCEGW: type: tosca.nodes.AWS.Networking.InternetGateway properties: egress_only: true capabilities: routing: properties: ipv6_dest_cidr: "::/0" requirements: route_table: Free5GCPrivateRouteTable vpc: Free5GCVPC