Skip to content

Commit 60c34a3

Browse files
Transit Gateway native integration with AWS Network Firewall. Adding new enum value for the new Transit Gateway Attachment type.
1 parent a953612 commit 60c34a3

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

generator/ServiceModels/ec2/ec2-2016-11-15.api.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48931,7 +48931,8 @@
4893148931
"direct-connect-gateway",
4893248932
"connect",
4893348933
"peering",
48934-
"tgw-peering"
48934+
"tgw-peering",
48935+
"network-function"
4893548936
]
4893648937
},
4893748938
"TransitGatewayAttachmentState":{

generator/ServiceModels/ec2/ec2-2016-11-15.normal.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63554,7 +63554,8 @@
6355463554
"direct-connect-gateway",
6355563555
"connect",
6355663556
"peering",
63557-
"tgw-peering"
63557+
"tgw-peering",
63558+
"network-function"
6355863559
]
6355963560
},
6356063561
"TransitGatewayAttachmentState":{

sdk/src/Services/EC2/Generated/ServiceEnumerations.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22983,6 +22983,10 @@ public class TransitGatewayAttachmentResourceType : ConstantClass
2298322983
/// </summary>
2298422984
public static readonly TransitGatewayAttachmentResourceType DirectConnectGateway = new TransitGatewayAttachmentResourceType("direct-connect-gateway");
2298522985
/// <summary>
22986+
/// Constant NetworkFunction for TransitGatewayAttachmentResourceType
22987+
/// </summary>
22988+
public static readonly TransitGatewayAttachmentResourceType NetworkFunction = new TransitGatewayAttachmentResourceType("network-function");
22989+
/// <summary>
2298622990
/// Constant Peering for TransitGatewayAttachmentResourceType
2298722991
/// </summary>
2298822992
public static readonly TransitGatewayAttachmentResourceType Peering = new TransitGatewayAttachmentResourceType("peering");

0 commit comments

Comments
 (0)