Skip to content

Commit 6f9b4a6

Browse files
author
awstools
committed
feat(client-ec2): Release shows new route types such as filtered and advertisement.
1 parent 123a615 commit 6f9b4a6

File tree

5 files changed

+13
-15
lines changed

5 files changed

+13
-15
lines changed

clients/client-ec2/src/commands/CreateRouteTableCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ export interface CreateRouteTableCommandOutput extends CreateRouteTableResult, _
9191
* // LocalGatewayId: "STRING_VALUE",
9292
* // CarrierGatewayId: "STRING_VALUE",
9393
* // NetworkInterfaceId: "STRING_VALUE",
94-
* // Origin: "CreateRouteTable" || "CreateRoute" || "EnableVgwRoutePropagation",
95-
* // State: "active" || "blackhole",
94+
* // Origin: "CreateRouteTable" || "CreateRoute" || "EnableVgwRoutePropagation" || "Advertisement",
95+
* // State: "active" || "blackhole" || "filtered",
9696
* // VpcPeeringConnectionId: "STRING_VALUE",
9797
* // CoreNetworkArn: "STRING_VALUE",
9898
* // OdbNetworkArn: "STRING_VALUE",

clients/client-ec2/src/commands/DescribeRouteTablesCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ export interface DescribeRouteTablesCommandOutput extends DescribeRouteTablesRes
9595
* // LocalGatewayId: "STRING_VALUE",
9696
* // CarrierGatewayId: "STRING_VALUE",
9797
* // NetworkInterfaceId: "STRING_VALUE",
98-
* // Origin: "CreateRouteTable" || "CreateRoute" || "EnableVgwRoutePropagation",
99-
* // State: "active" || "blackhole",
98+
* // Origin: "CreateRouteTable" || "CreateRoute" || "EnableVgwRoutePropagation" || "Advertisement",
99+
* // State: "active" || "blackhole" || "filtered",
100100
* // VpcPeeringConnectionId: "STRING_VALUE",
101101
* // CoreNetworkArn: "STRING_VALUE",
102102
* // OdbNetworkArn: "STRING_VALUE",

clients/client-ec2/src/models/models_2.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5452,6 +5452,7 @@ export interface PropagatingVgw {
54525452
* @enum
54535453
*/
54545454
export const RouteOrigin = {
5455+
Advertisement: "Advertisement",
54555456
CreateRoute: "CreateRoute",
54565457
CreateRouteTable: "CreateRouteTable",
54575458
EnableVgwRoutePropagation: "EnableVgwRoutePropagation",
@@ -5469,6 +5470,7 @@ export type RouteOrigin = (typeof RouteOrigin)[keyof typeof RouteOrigin];
54695470
export const RouteState = {
54705471
active: "active",
54715472
blackhole: "blackhole",
5473+
filtered: "filtered",
54725474
} as const;
54735475

54745476
/**
@@ -7552,10 +7554,7 @@ export interface TransitGatewayOptions {
75527554

75537555
/**
75547556
* <p>Indicates whether resource attachments are automatically associated with the default
7555-
* association route table. Enabled by default. If <code>defaultRouteTableAssociation</code>
7556-
* is set to <code>enable</code>,
7557-
* Amazon Web Services Transit Gateway will create the default transit gateway route
7558-
* table.</p>
7557+
* association route table. Enabled by default. Either <code>defaultRouteTableAssociation</code> or <code>defaultRouteTablePropagation</code> must be set to <code>enable</code> for Amazon Web Services Transit Gateway to create the default transit gateway route table.</p>
75597558
* @public
75607559
*/
75617560
DefaultRouteTableAssociation?: DefaultRouteTableAssociationValue | undefined;
@@ -7570,7 +7569,7 @@ export interface TransitGatewayOptions {
75707569
* <p>Indicates whether resource attachments automatically propagate routes to the default
75717570
* propagation route table. Enabled by default. If <code>defaultRouteTablePropagation</code>
75727571
* is set to <code>enable</code>,
7573-
* Amazon Web Services Transit Gateway will create the default transit gateway route
7572+
* Amazon Web Services Transit Gateway creates the default transit gateway route
75747573
* table.</p>
75757574
* @public
75767575
*/

clients/client-ec2/src/models/models_6.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -565,11 +565,6 @@ export interface DescribeVpcEndpointAssociationsRequest {
565565
* <code>resource-configuration-group-arn</code> - The Amazon Resource Name (ARN) of
566566
* the resource configuration of type GROUP.</p>
567567
* </li>
568-
* <li>
569-
* <p>
570-
* <code>service-network-resource-association-id</code> - The ID of the
571-
* association.</p>
572-
* </li>
573568
* </ul>
574569
* @public
575570
*/

clients/client-ec2/src/models/models_7.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7131,7 +7131,11 @@ export interface ModifyTransitGatewayOptions {
71317131
AssociationDefaultRouteTableId?: string | undefined;
71327132

71337133
/**
7134-
* <p>Enable or disable automatic propagation of routes to the default propagation route table.</p>
7134+
* <p>Indicates whether resource attachments automatically propagate routes to the default
7135+
* propagation route table. Enabled by default. If <code>defaultRouteTablePropagation</code>
7136+
* is set to <code>enable</code>,
7137+
* Amazon Web Services Transit Gateway will create the default transit gateway route
7138+
* table.</p>
71357139
* @public
71367140
*/
71377141
DefaultRouteTablePropagation?: DefaultRouteTablePropagationValue | undefined;

0 commit comments

Comments
 (0)