@awboost/cfn-resource-types 0.1.127 → 0.1.128

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,10 +5,18 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayroutetableattachment.html}
6
6
  */
7
7
  export type NetworkManagerTransitGatewayRouteTableAttachmentProperties = {
8
+ /**
9
+ * The name of the network function group attachment.
10
+ */
11
+ NetworkFunctionGroupName?: string;
8
12
  /**
9
13
  * The Id of peering between transit gateway and core network.
10
14
  */
11
15
  PeeringId: string;
16
+ /**
17
+ * The attachment to move from one network function group to another.
18
+ */
19
+ ProposedNetworkFunctionGroupChange?: ProposedNetworkFunctionGroupChange;
12
20
  /**
13
21
  * The attachment to move from one segment to another.
14
22
  */
@@ -76,6 +84,25 @@ export type NetworkManagerTransitGatewayRouteTableAttachmentAttributes = {
76
84
  */
77
85
  UpdatedAt: string;
78
86
  };
87
+ /**
88
+ * Type definition for `AWS::NetworkManager::TransitGatewayRouteTableAttachment.ProposedNetworkFunctionGroupChange`.
89
+ * The attachment to move from one network function group to another.
90
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-transitgatewayroutetableattachment-proposednetworkfunctiongroupchange.html}
91
+ */
92
+ export type ProposedNetworkFunctionGroupChange = {
93
+ /**
94
+ * The rule number in the policy document that applies to this change.
95
+ */
96
+ AttachmentPolicyRuleNumber?: number;
97
+ /**
98
+ * The name of the network function group to change.
99
+ */
100
+ NetworkFunctionGroupName?: string;
101
+ /**
102
+ * The key-value tags that changed for the network function group.
103
+ */
104
+ Tags?: Tag[];
105
+ };
79
106
  /**
80
107
  * Type definition for `AWS::NetworkManager::TransitGatewayRouteTableAttachment.ProposedSegmentChange`.
81
108
  * The attachment to move from one segment to another.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.127",
3
+ "version": "0.1.128",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },