AWS.Networking。InternetGateway - AWS 電信網路建置器

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

AWS.Networking。InternetGateway

定義 AWS 網際網路閘道節點。

語法

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