aws-sdk-networkmanager 1.43.0 → 1.45.0

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.
@@ -281,6 +281,10 @@ module Aws::NetworkManager
281
281
  # The name of the segment attachment.
282
282
  # @return [String]
283
283
  #
284
+ # @!attribute [rw] network_function_group_name
285
+ # The name of the network function group.
286
+ # @return [String]
287
+ #
284
288
  # @!attribute [rw] tags
285
289
  # The tags associated with the attachment.
286
290
  # @return [Array<Types::Tag>]
@@ -289,6 +293,11 @@ module Aws::NetworkManager
289
293
  # The attachment to move from one segment to another.
290
294
  # @return [Types::ProposedSegmentChange]
291
295
  #
296
+ # @!attribute [rw] proposed_network_function_group_change
297
+ # Describes a proposed change to a network function group associated
298
+ # with the attachment.
299
+ # @return [Types::ProposedNetworkFunctionGroupChange]
300
+ #
292
301
  # @!attribute [rw] created_at
293
302
  # The timestamp when the attachment was created.
294
303
  # @return [Time]
@@ -310,8 +319,10 @@ module Aws::NetworkManager
310
319
  :resource_arn,
311
320
  :attachment_policy_rule_number,
312
321
  :segment_name,
322
+ :network_function_group_name,
313
323
  :tags,
314
324
  :proposed_segment_change,
325
+ :proposed_network_function_group_change,
315
326
  :created_at,
316
327
  :updated_at)
317
328
  SENSITIVE = []
@@ -448,7 +459,8 @@ module Aws::NetworkManager
448
459
  # @return [Array<Types::Tag>]
449
460
  #
450
461
  # @!attribute [rw] subnet_arn
451
- # The subnet ARN for the Connect peer.
462
+ # The subnet ARN for the Connect peer. This only applies only when the
463
+ # protocol is NO\_ENCAP.
452
464
  # @return [String]
453
465
  #
454
466
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ConnectPeer AWS API Documentation
@@ -731,6 +743,10 @@ module Aws::NetworkManager
731
743
  # The segments within a core network.
732
744
  # @return [Array<Types::CoreNetworkSegment>]
733
745
  #
746
+ # @!attribute [rw] network_function_groups
747
+ # The network function groups associated with a core network.
748
+ # @return [Array<Types::CoreNetworkNetworkFunctionGroup>]
749
+ #
734
750
  # @!attribute [rw] edges
735
751
  # The edges within a core network.
736
752
  # @return [Array<Types::CoreNetworkEdge>]
@@ -749,6 +765,7 @@ module Aws::NetworkManager
749
765
  :created_at,
750
766
  :state,
751
767
  :segments,
768
+ :network_function_groups,
752
769
  :edges,
753
770
  :tags)
754
771
  SENSITIVE = []
@@ -848,6 +865,10 @@ module Aws::NetworkManager
848
865
  # The segment name if the change event is associated with a segment.
849
866
  # @return [String]
850
867
  #
868
+ # @!attribute [rw] network_function_group_name
869
+ # The changed network function group name.
870
+ # @return [String]
871
+ #
851
872
  # @!attribute [rw] attachment_id
852
873
  # The ID of the attachment if the change event is associated with an
853
874
  # attachment.
@@ -862,6 +883,7 @@ module Aws::NetworkManager
862
883
  class CoreNetworkChangeEventValues < Struct.new(
863
884
  :edge_location,
864
885
  :segment_name,
886
+ :network_function_group_name,
865
887
  :attachment_id,
866
888
  :cidr)
867
889
  SENSITIVE = []
@@ -874,6 +896,11 @@ module Aws::NetworkManager
874
896
  # The names of the segments in a core network.
875
897
  # @return [String]
876
898
  #
899
+ # @!attribute [rw] network_function_group_name
900
+ # The network function group name if the change event is associated
901
+ # with a network function group.
902
+ # @return [String]
903
+ #
877
904
  # @!attribute [rw] edge_locations
878
905
  # The Regions where edges are located in a core network.
879
906
  # @return [Array<String>]
@@ -898,16 +925,22 @@ module Aws::NetworkManager
898
925
  # The shared segments for a core network change value.
899
926
  # @return [Array<String>]
900
927
  #
928
+ # @!attribute [rw] service_insertion_actions
929
+ # Describes the service insertion action.
930
+ # @return [Array<Types::ServiceInsertionAction>]
931
+ #
901
932
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkChangeValues AWS API Documentation
902
933
  #
903
934
  class CoreNetworkChangeValues < Struct.new(
904
935
  :segment_name,
936
+ :network_function_group_name,
905
937
  :edge_locations,
906
938
  :asn,
907
939
  :cidr,
908
940
  :destination_identifier,
909
941
  :inside_cidr_blocks,
910
- :shared_segments)
942
+ :shared_segments,
943
+ :service_insertion_actions)
911
944
  SENSITIVE = []
912
945
  include Aws::Structure
913
946
  end
@@ -936,6 +969,54 @@ module Aws::NetworkManager
936
969
  include Aws::Structure
937
970
  end
938
971
 
972
+ # Describes a network function group.
973
+ #
974
+ # @!attribute [rw] name
975
+ # The name of the network function group.
976
+ # @return [String]
977
+ #
978
+ # @!attribute [rw] edge_locations
979
+ # The core network edge locations.
980
+ # @return [Array<String>]
981
+ #
982
+ # @!attribute [rw] segments
983
+ # The segments associated with the network function group.
984
+ # @return [Types::ServiceInsertionSegments]
985
+ #
986
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkNetworkFunctionGroup AWS API Documentation
987
+ #
988
+ class CoreNetworkNetworkFunctionGroup < Struct.new(
989
+ :name,
990
+ :edge_locations,
991
+ :segments)
992
+ SENSITIVE = []
993
+ include Aws::Structure
994
+ end
995
+
996
+ # Describes a core network
997
+ #
998
+ # @!attribute [rw] core_network_id
999
+ # The ID of the core network.
1000
+ # @return [String]
1001
+ #
1002
+ # @!attribute [rw] network_function_group_name
1003
+ # The network function group name.
1004
+ # @return [String]
1005
+ #
1006
+ # @!attribute [rw] edge_location
1007
+ # The location for the core network edge.
1008
+ # @return [String]
1009
+ #
1010
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkNetworkFunctionGroupIdentifier AWS API Documentation
1011
+ #
1012
+ class CoreNetworkNetworkFunctionGroupIdentifier < Struct.new(
1013
+ :core_network_id,
1014
+ :network_function_group_name,
1015
+ :edge_location)
1016
+ SENSITIVE = []
1017
+ include Aws::Structure
1018
+ end
1019
+
939
1020
  # Describes a core network policy. You can have only one LIVE Core
940
1021
  # Policy.
941
1022
  #
@@ -1219,7 +1300,8 @@ module Aws::NetworkManager
1219
1300
  # @return [String]
1220
1301
  #
1221
1302
  # @!attribute [rw] core_network_address
1222
- # A Connect peer core network address.
1303
+ # A Connect peer core network address. This only applies only when the
1304
+ # protocol is `GRE`.
1223
1305
  # @return [String]
1224
1306
  #
1225
1307
  # @!attribute [rw] peer_address
@@ -1227,7 +1309,8 @@ module Aws::NetworkManager
1227
1309
  # @return [String]
1228
1310
  #
1229
1311
  # @!attribute [rw] bgp_options
1230
- # The Connect peer BGP options.
1312
+ # The Connect peer BGP options. This only applies only when the
1313
+ # protocol is `GRE`.
1231
1314
  # @return [Types::BgpOptions]
1232
1315
  #
1233
1316
  # @!attribute [rw] inside_cidr_blocks
@@ -1246,7 +1329,8 @@ module Aws::NetworkManager
1246
1329
  # @return [String]
1247
1330
  #
1248
1331
  # @!attribute [rw] subnet_arn
1249
- # The subnet ARN for the Connect peer.
1332
+ # The subnet ARN for the Connect peer. This only applies only when the
1333
+ # protocol is NO\_ENCAP.
1250
1334
  # @return [String]
1251
1335
  #
1252
1336
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateConnectPeerRequest AWS API Documentation
@@ -2366,6 +2450,25 @@ module Aws::NetworkManager
2366
2450
  include Aws::Structure
2367
2451
  end
2368
2452
 
2453
+ # Describes the edge that's used for the override.
2454
+ #
2455
+ # @!attribute [rw] edge_sets
2456
+ # The list of edge locations.
2457
+ # @return [Array<Array<String>>]
2458
+ #
2459
+ # @!attribute [rw] use_edge
2460
+ # The edge that should be used when overriding the current edge order.
2461
+ # @return [String]
2462
+ #
2463
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/EdgeOverride AWS API Documentation
2464
+ #
2465
+ class EdgeOverride < Struct.new(
2466
+ :edge_sets,
2467
+ :use_edge)
2468
+ SENSITIVE = []
2469
+ include Aws::Structure
2470
+ end
2471
+
2369
2472
  # @!attribute [rw] core_network_id
2370
2473
  # The ID of a core network.
2371
2474
  # @return [String]
@@ -2893,12 +2996,20 @@ module Aws::NetworkManager
2893
2996
  #
2894
2997
  # The following are the supported resource types for Network Manager:
2895
2998
  #
2999
+ # * `attachment`
3000
+ #
3001
+ # * `connect-peer`
3002
+ #
2896
3003
  # * `connection`
2897
3004
  #
3005
+ # * `core-network`
3006
+ #
2898
3007
  # * `device`
2899
3008
  #
2900
3009
  # * `link`
2901
3010
  #
3011
+ # * `peering`
3012
+ #
2902
3013
  # * `site`
2903
3014
  #
2904
3015
  # The following are the supported resource types for Amazon VPC:
@@ -2985,12 +3096,20 @@ module Aws::NetworkManager
2985
3096
  #
2986
3097
  # The following are the supported resource types for Network Manager:
2987
3098
  #
3099
+ # * `attachment`
3100
+ #
3101
+ # * `connect-peer`
3102
+ #
2988
3103
  # * `connection`
2989
3104
  #
3105
+ # * `core-network`
3106
+ #
2990
3107
  # * `device`
2991
3108
  #
2992
3109
  # * `link`
2993
3110
  #
3111
+ # * `peering`
3112
+ #
2994
3113
  # * `site`
2995
3114
  #
2996
3115
  # The following are the supported resource types for Amazon VPC:
@@ -3078,54 +3197,43 @@ module Aws::NetworkManager
3078
3197
  #
3079
3198
  # The following are the supported resource types for Direct Connect:
3080
3199
  #
3081
- # * `dxcon` - The definition model is [Connection][1].
3200
+ # * `dxcon`
3082
3201
  #
3083
- # * `dx-gateway` - The definition model is [DirectConnectGateway][2].
3202
+ # * `dx-gateway`
3084
3203
  #
3085
- # * `dx-vif` - The definition model is [VirtualInterface][3].
3204
+ # * `dx-vif`
3086
3205
  #
3087
3206
  # The following are the supported resource types for Network Manager:
3088
3207
  #
3089
- # * `connection` - The definition model is [Connection][4].
3208
+ # * `attachment`
3090
3209
  #
3091
- # * `device` - The definition model is [Device][5].
3210
+ # * `connect-peer`
3092
3211
  #
3093
- # * `link` - The definition model is [Link][6].
3212
+ # * `connection`
3094
3213
  #
3095
- # * `site` - The definition model is [Site][7].
3214
+ # * `core-network`
3096
3215
  #
3097
- # The following are the supported resource types for Amazon VPC:
3216
+ # * `device`
3217
+ #
3218
+ # * `link`
3098
3219
  #
3099
- # * `customer-gateway` - The definition model is [CustomerGateway][8].
3220
+ # * `peering`
3100
3221
  #
3101
- # * `transit-gateway` - The definition model is [TransitGateway][9].
3222
+ # * `site`
3102
3223
  #
3103
- # * `transit-gateway-attachment` - The definition model is
3104
- # [TransitGatewayAttachment][10].
3224
+ # The following are the supported resource types for Amazon VPC:
3105
3225
  #
3106
- # * `transit-gateway-connect-peer` - The definition model is
3107
- # [TransitGatewayConnectPeer][11].
3226
+ # * `customer-gateway`
3108
3227
  #
3109
- # * `transit-gateway-route-table` - The definition model is
3110
- # [TransitGatewayRouteTable][12].
3228
+ # * `transit-gateway`
3111
3229
  #
3112
- # * `vpn-connection` - The definition model is [VpnConnection][13].
3230
+ # * `transit-gateway-attachment`
3113
3231
  #
3232
+ # * `transit-gateway-connect-peer`
3114
3233
  #
3234
+ # * `transit-gateway-route-table`
3115
3235
  #
3116
- # [1]: https://docs.aws.amazon.com/directconnect/latest/APIReference/API_Connection.html
3117
- # [2]: https://docs.aws.amazon.com/directconnect/latest/APIReference/API_DirectConnectGateway.html
3118
- # [3]: https://docs.aws.amazon.com/directconnect/latest/APIReference/API_VirtualInterface.html
3119
- # [4]: https://docs.aws.amazon.com/networkmanager/latest/APIReference/API_Connection.html
3120
- # [5]: https://docs.aws.amazon.com/networkmanager/latest/APIReference/API_Device.html
3121
- # [6]: https://docs.aws.amazon.com/networkmanager/latest/APIReference/API_Link.html
3122
- # [7]: https://docs.aws.amazon.com/networkmanager/latest/APIReference/API_Site.html
3123
- # [8]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CustomerGateway.html
3124
- # [9]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_TransitGateway.html
3125
- # [10]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_TransitGatewayAttachment.html
3126
- # [11]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_TransitGatewayConnectPeer.html
3127
- # [12]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_TransitGatewayRouteTable.html
3128
- # [13]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_VpnConnection.html
3236
+ # * `vpn-connection`
3129
3237
  # @return [String]
3130
3238
  #
3131
3239
  # @!attribute [rw] resource_arn
@@ -3286,38 +3394,12 @@ module Aws::NetworkManager
3286
3394
  # @return [String]
3287
3395
  #
3288
3396
  # @!attribute [rw] resource_type
3289
- # The resource type.
3290
- #
3291
- # The following are the supported resource types for Direct Connect:
3292
- #
3293
- # * `dxcon`
3294
- #
3295
- # * `dx-gateway`
3296
- #
3297
- # * `dx-vif`
3298
- #
3299
- # The following are the supported resource types for Network Manager:
3300
- #
3301
- # * `connection`
3397
+ # The resource type. The following are the supported resource types:
3302
3398
  #
3303
- # * `device`
3304
- #
3305
- # * `link`
3306
- #
3307
- # * `site`
3308
- #
3309
- # The following are the supported resource types for Amazon VPC:
3310
- #
3311
- # * `customer-gateway`
3312
- #
3313
- # * `transit-gateway`
3314
- #
3315
- # * `transit-gateway-attachment`
3399
+ # * `connect-peer`
3316
3400
  #
3317
3401
  # * `transit-gateway-connect-peer`
3318
3402
  #
3319
- # * `transit-gateway-route-table`
3320
- #
3321
3403
  # * `vpn-connection`
3322
3404
  # @return [String]
3323
3405
  #
@@ -4109,6 +4191,20 @@ module Aws::NetworkManager
4109
4191
  include Aws::Structure
4110
4192
  end
4111
4193
 
4194
+ # Describes a network function group for service insertion.
4195
+ #
4196
+ # @!attribute [rw] name
4197
+ # The name of the network function group.
4198
+ # @return [String]
4199
+ #
4200
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/NetworkFunctionGroup AWS API Documentation
4201
+ #
4202
+ class NetworkFunctionGroup < Struct.new(
4203
+ :name)
4204
+ SENSITIVE = []
4205
+ include Aws::Structure
4206
+ end
4207
+
4112
4208
  # Describes a network resource.
4113
4209
  #
4114
4210
  # @!attribute [rw] registered_gateway_arn
@@ -4140,12 +4236,20 @@ module Aws::NetworkManager
4140
4236
  #
4141
4237
  # The following are the supported resource types for Network Manager:
4142
4238
  #
4239
+ # * `attachment`
4240
+ #
4241
+ # * `connect-peer`
4242
+ #
4143
4243
  # * `connection`
4144
4244
  #
4245
+ # * `core-network`
4246
+ #
4145
4247
  # * `device`
4146
4248
  #
4147
4249
  # * `link`
4148
4250
  #
4251
+ # * `peering`
4252
+ #
4149
4253
  # * `site`
4150
4254
  #
4151
4255
  # The following are the supported resource types for Amazon VPC:
@@ -4315,6 +4419,10 @@ module Aws::NetworkManager
4315
4419
  # The name of the segment.
4316
4420
  # @return [String]
4317
4421
  #
4422
+ # @!attribute [rw] network_function_group_name
4423
+ # The network function group name associated with the destination.
4424
+ # @return [String]
4425
+ #
4318
4426
  # @!attribute [rw] edge_location
4319
4427
  # The edge location for the network destination.
4320
4428
  # @return [String]
@@ -4333,6 +4441,7 @@ module Aws::NetworkManager
4333
4441
  :core_network_attachment_id,
4334
4442
  :transit_gateway_attachment_id,
4335
4443
  :segment_name,
4444
+ :network_function_group_name,
4336
4445
  :edge_location,
4337
4446
  :resource_type,
4338
4447
  :resource_id)
@@ -4511,6 +4620,32 @@ module Aws::NetworkManager
4511
4620
  include Aws::Structure
4512
4621
  end
4513
4622
 
4623
+ # Describes proposed changes to a network function group.
4624
+ #
4625
+ # @!attribute [rw] tags
4626
+ # The list of proposed changes to the key-value tags associated with
4627
+ # the network function group.
4628
+ # @return [Array<Types::Tag>]
4629
+ #
4630
+ # @!attribute [rw] attachment_policy_rule_number
4631
+ # The proposed new attachment policy rule number for the network
4632
+ # function group.
4633
+ # @return [Integer]
4634
+ #
4635
+ # @!attribute [rw] network_function_group_name
4636
+ # The proposed name change for the network function group name.
4637
+ # @return [String]
4638
+ #
4639
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ProposedNetworkFunctionGroupChange AWS API Documentation
4640
+ #
4641
+ class ProposedNetworkFunctionGroupChange < Struct.new(
4642
+ :tags,
4643
+ :attachment_policy_rule_number,
4644
+ :network_function_group_name)
4645
+ SENSITIVE = []
4646
+ include Aws::Structure
4647
+ end
4648
+
4514
4649
  # Describes a proposed segment change. In some cases, the segment change
4515
4650
  # must first be evaluated and accepted.
4516
4651
  #
@@ -4925,11 +5060,79 @@ module Aws::NetworkManager
4925
5060
  # The segment edge in a core network.
4926
5061
  # @return [Types::CoreNetworkSegmentEdgeIdentifier]
4927
5062
  #
5063
+ # @!attribute [rw] core_network_network_function_group
5064
+ # The route table identifier associated with the network function
5065
+ # group.
5066
+ # @return [Types::CoreNetworkNetworkFunctionGroupIdentifier]
5067
+ #
4928
5068
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/RouteTableIdentifier AWS API Documentation
4929
5069
  #
4930
5070
  class RouteTableIdentifier < Struct.new(
4931
5071
  :transit_gateway_route_table_arn,
4932
- :core_network_segment_edge)
5072
+ :core_network_segment_edge,
5073
+ :core_network_network_function_group)
5074
+ SENSITIVE = []
5075
+ include Aws::Structure
5076
+ end
5077
+
5078
+ # Describes the action that the service insertion will take for any
5079
+ # segments associated with it.
5080
+ #
5081
+ # @!attribute [rw] action
5082
+ # The action the service insertion takes for traffic. `send-via` sends
5083
+ # east-west traffic between attachments. `send-to` sends north-south
5084
+ # traffic to the security appliance, and then from that to either the
5085
+ # Internet or to an on-premesis location.
5086
+ # @return [String]
5087
+ #
5088
+ # @!attribute [rw] mode
5089
+ # Describes the mode packets take for the `send-via` action. This is
5090
+ # not used when the action is `send-to`. `dual-hop` packets traverse
5091
+ # attachments in both the source to the destination core network
5092
+ # edges. This mode requires that an inspection attachment must be
5093
+ # present in all Regions of the service insertion-enabled segments.
5094
+ # For `single-hop`, packets traverse a single intermediate inserted
5095
+ # attachment. You can use `EdgeOverride` to specify a specific edge to
5096
+ # use.
5097
+ # @return [String]
5098
+ #
5099
+ # @!attribute [rw] when_sent_to
5100
+ # The list of destination segments if the service insertion action is
5101
+ # `send-via`.
5102
+ # @return [Types::WhenSentTo]
5103
+ #
5104
+ # @!attribute [rw] via
5105
+ # The list of network function groups and any edge overrides for the
5106
+ # chosen service insertion action. Used for both `send-to` or
5107
+ # `send-via`.
5108
+ # @return [Types::Via]
5109
+ #
5110
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ServiceInsertionAction AWS API Documentation
5111
+ #
5112
+ class ServiceInsertionAction < Struct.new(
5113
+ :action,
5114
+ :mode,
5115
+ :when_sent_to,
5116
+ :via)
5117
+ SENSITIVE = []
5118
+ include Aws::Structure
5119
+ end
5120
+
5121
+ # Describes the segments associated with the service insertion action.
5122
+ #
5123
+ # @!attribute [rw] send_via
5124
+ # The list of segments associated with the `send-via` action.
5125
+ # @return [Array<String>]
5126
+ #
5127
+ # @!attribute [rw] send_to
5128
+ # The list of segments associated with the `send-to` action.
5129
+ # @return [Array<String>]
5130
+ #
5131
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ServiceInsertionSegments AWS API Documentation
5132
+ #
5133
+ class ServiceInsertionSegments < Struct.new(
5134
+ :send_via,
5135
+ :send_to)
4933
5136
  SENSITIVE = []
4934
5137
  include Aws::Structure
4935
5138
  end
@@ -5724,6 +5927,28 @@ module Aws::NetworkManager
5724
5927
  include Aws::Structure
5725
5928
  end
5726
5929
 
5930
+ # The list of network function groups and edge overrides for the service
5931
+ # insertion action. Used for both the `send-to` and `send-via` actions.
5932
+ #
5933
+ # @!attribute [rw] network_function_groups
5934
+ # The list of network function groups associated with the service
5935
+ # insertion action.
5936
+ # @return [Array<Types::NetworkFunctionGroup>]
5937
+ #
5938
+ # @!attribute [rw] with_edge_overrides
5939
+ # Describes any edge overrides. An edge override is a specific edge to
5940
+ # be used for traffic.
5941
+ # @return [Array<Types::EdgeOverride>]
5942
+ #
5943
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/Via AWS API Documentation
5944
+ #
5945
+ class Via < Struct.new(
5946
+ :network_function_groups,
5947
+ :with_edge_overrides)
5948
+ SENSITIVE = []
5949
+ include Aws::Structure
5950
+ end
5951
+
5727
5952
  # Describes a VPC attachment.
5728
5953
  #
5729
5954
  # @!attribute [rw] attachment
@@ -5770,5 +5995,21 @@ module Aws::NetworkManager
5770
5995
  include Aws::Structure
5771
5996
  end
5772
5997
 
5998
+ # Displays a list of the destination segments. Used only when the
5999
+ # service insertion action is `send-to`.
6000
+ #
6001
+ # @!attribute [rw] when_sent_to_segments_list
6002
+ # The list of destination segments when the service insertion action
6003
+ # is `send-to`.
6004
+ # @return [Array<String>]
6005
+ #
6006
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/WhenSentTo AWS API Documentation
6007
+ #
6008
+ class WhenSentTo < Struct.new(
6009
+ :when_sent_to_segments_list)
6010
+ SENSITIVE = []
6011
+ include Aws::Structure
6012
+ end
6013
+
5773
6014
  end
5774
6015
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-networkmanager/customizations'
52
52
  # @!group service
53
53
  module Aws::NetworkManager
54
54
 
55
- GEM_VERSION = '1.43.0'
55
+ GEM_VERSION = '1.45.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -798,7 +798,7 @@ module Aws
798
798
  include ::Seahorse::Client::_ResponseSuccess[Types::GetNetworkRoutesResponse]
799
799
  def route_table_arn: () -> ::String
800
800
  def core_network_segment_edge: () -> Types::CoreNetworkSegmentEdgeIdentifier
801
- def route_table_type: () -> ("TRANSIT_GATEWAY_ROUTE_TABLE" | "CORE_NETWORK_SEGMENT")
801
+ def route_table_type: () -> ("TRANSIT_GATEWAY_ROUTE_TABLE" | "CORE_NETWORK_SEGMENT" | "NETWORK_FUNCTION_GROUP")
802
802
  def route_table_timestamp: () -> ::Time
803
803
  def network_routes: () -> ::Array[Types::NetworkRoute]
804
804
  end
@@ -811,6 +811,11 @@ module Aws
811
811
  core_network_id: ::String?,
812
812
  segment_name: ::String?,
813
813
  edge_location: ::String?
814
+ }?,
815
+ core_network_network_function_group: {
816
+ core_network_id: ::String?,
817
+ network_function_group_name: ::String?,
818
+ edge_location: ::String?
814
819
  }?
815
820
  },
816
821
  ?exact_cidr_matches: Array[::String],