aws-sdk-networkmanager 1.71.0 → 1.73.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.
@@ -372,6 +372,38 @@ module Aws::NetworkManager
372
372
  include Aws::Structure
373
373
  end
374
374
 
375
+ # Summary information about routing policy associations for an
376
+ # attachment.
377
+ #
378
+ # @!attribute [rw] attachment_id
379
+ # The ID of the attachment associated with the routing policy.
380
+ # @return [String]
381
+ #
382
+ # @!attribute [rw] pending_routing_policies
383
+ # The list of routing policies that are pending association with the
384
+ # attachment.
385
+ # @return [Array<String>]
386
+ #
387
+ # @!attribute [rw] associated_routing_policies
388
+ # The list of routing policies currently associated with the
389
+ # attachment.
390
+ # @return [Array<String>]
391
+ #
392
+ # @!attribute [rw] routing_policy_label
393
+ # The routing policy label associated with the attachment.
394
+ # @return [String]
395
+ #
396
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/AttachmentRoutingPolicyAssociationSummary AWS API Documentation
397
+ #
398
+ class AttachmentRoutingPolicyAssociationSummary < Struct.new(
399
+ :attachment_id,
400
+ :pending_routing_policies,
401
+ :associated_routing_policies,
402
+ :routing_policy_label)
403
+ SENSITIVE = []
404
+ include Aws::Structure
405
+ end
406
+
375
407
  # Describes bandwidth information.
376
408
  #
377
409
  # @!attribute [rw] upload_speed
@@ -938,6 +970,15 @@ module Aws::NetworkManager
938
970
  # The edge location for the core network change event.
939
971
  # @return [String]
940
972
  #
973
+ # @!attribute [rw] peer_edge_location
974
+ # The edge location of the peer in a core network change event.
975
+ # @return [String]
976
+ #
977
+ # @!attribute [rw] routing_policy_direction
978
+ # The routing policy direction (inbound/outbound) in a core network
979
+ # change event.
980
+ # @return [String]
981
+ #
941
982
  # @!attribute [rw] segment_name
942
983
  # The segment name if the change event is associated with a segment.
943
984
  # @return [String]
@@ -955,14 +996,22 @@ module Aws::NetworkManager
955
996
  # For a `STATIC_ROUTE` event, this is the IP address.
956
997
  # @return [String]
957
998
  #
999
+ # @!attribute [rw] routing_policy_association_details
1000
+ # The names of the routing policies and other association details in
1001
+ # the core network change values.
1002
+ # @return [Array<Types::RoutingPolicyAssociationDetail>]
1003
+ #
958
1004
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkChangeEventValues AWS API Documentation
959
1005
  #
960
1006
  class CoreNetworkChangeEventValues < Struct.new(
961
1007
  :edge_location,
1008
+ :peer_edge_location,
1009
+ :routing_policy_direction,
962
1010
  :segment_name,
963
1011
  :network_function_group_name,
964
1012
  :attachment_id,
965
- :cidr)
1013
+ :cidr,
1014
+ :routing_policy_association_details)
966
1015
  SENSITIVE = []
967
1016
  include Aws::Structure
968
1017
  end
@@ -1021,6 +1070,28 @@ module Aws::NetworkManager
1021
1070
  # network.
1022
1071
  # @return [Boolean]
1023
1072
  #
1073
+ # @!attribute [rw] routing_policy_direction
1074
+ # The routing policy direction (inbound/outbound) in a core network
1075
+ # change event.
1076
+ # @return [String]
1077
+ #
1078
+ # @!attribute [rw] routing_policy
1079
+ # The routing policy configuration in the core network change values.
1080
+ # @return [String]
1081
+ #
1082
+ # @!attribute [rw] peer_edge_locations
1083
+ # The edge locations of peers in the core network change values.
1084
+ # @return [Array<String>]
1085
+ #
1086
+ # @!attribute [rw] attachment_id
1087
+ # The attachment identifier in the core network change values.
1088
+ # @return [String]
1089
+ #
1090
+ # @!attribute [rw] routing_policy_association_details
1091
+ # The names of the routing policies and other association details in
1092
+ # the core network change values.
1093
+ # @return [Array<Types::RoutingPolicyAssociationDetail>]
1094
+ #
1024
1095
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkChangeValues AWS API Documentation
1025
1096
  #
1026
1097
  class CoreNetworkChangeValues < Struct.new(
@@ -1035,7 +1106,12 @@ module Aws::NetworkManager
1035
1106
  :service_insertion_actions,
1036
1107
  :vpn_ecmp_support,
1037
1108
  :dns_support,
1038
- :security_group_referencing_support)
1109
+ :security_group_referencing_support,
1110
+ :routing_policy_direction,
1111
+ :routing_policy,
1112
+ :peer_edge_locations,
1113
+ :attachment_id,
1114
+ :routing_policy_association_details)
1039
1115
  SENSITIVE = []
1040
1116
  include Aws::Structure
1041
1117
  end
@@ -1245,6 +1321,46 @@ module Aws::NetworkManager
1245
1321
  include Aws::Structure
1246
1322
  end
1247
1323
 
1324
+ # Routing information for a core network, including route details and
1325
+ # BGP attributes.
1326
+ #
1327
+ # @!attribute [rw] prefix
1328
+ # The IP prefix for the route.
1329
+ # @return [String]
1330
+ #
1331
+ # @!attribute [rw] next_hop
1332
+ # The next hop information for the route.
1333
+ # @return [Types::RoutingInformationNextHop]
1334
+ #
1335
+ # @!attribute [rw] local_preference
1336
+ # The BGP local preference value for the route.
1337
+ # @return [String]
1338
+ #
1339
+ # @!attribute [rw] med
1340
+ # The BGP Multi-Exit Discriminator (MED) value for the route.
1341
+ # @return [String]
1342
+ #
1343
+ # @!attribute [rw] as_path
1344
+ # The BGP AS path for the route.
1345
+ # @return [Array<String>]
1346
+ #
1347
+ # @!attribute [rw] communities
1348
+ # The BGP community values for the route.
1349
+ # @return [Array<String>]
1350
+ #
1351
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkRoutingInformation AWS API Documentation
1352
+ #
1353
+ class CoreNetworkRoutingInformation < Struct.new(
1354
+ :prefix,
1355
+ :next_hop,
1356
+ :local_preference,
1357
+ :med,
1358
+ :as_path,
1359
+ :communities)
1360
+ SENSITIVE = []
1361
+ include Aws::Structure
1362
+ end
1363
+
1248
1364
  # Describes a core network segment, which are dedicated routes. Only
1249
1365
  # attachments within this segment can communicate with each other.
1250
1366
  #
@@ -1350,6 +1466,11 @@ module Aws::NetworkManager
1350
1466
  # The ID of the attachment between the two connections.
1351
1467
  # @return [String]
1352
1468
  #
1469
+ # @!attribute [rw] routing_policy_label
1470
+ # The routing policy label to apply to the Connect attachment for
1471
+ # traffic routing decisions.
1472
+ # @return [String]
1473
+ #
1353
1474
  # @!attribute [rw] options
1354
1475
  # Options for creating an attachment.
1355
1476
  # @return [Types::ConnectAttachmentOptions]
@@ -1371,6 +1492,7 @@ module Aws::NetworkManager
1371
1492
  :core_network_id,
1372
1493
  :edge_location,
1373
1494
  :transport_attachment_id,
1495
+ :routing_policy_label,
1374
1496
  :options,
1375
1497
  :tags,
1376
1498
  :client_token)
@@ -1511,6 +1633,60 @@ module Aws::NetworkManager
1511
1633
  include Aws::Structure
1512
1634
  end
1513
1635
 
1636
+ # @!attribute [rw] core_network_id
1637
+ # The ID of the core network to associate with the prefix list.
1638
+ # @return [String]
1639
+ #
1640
+ # @!attribute [rw] prefix_list_arn
1641
+ # The ARN of the prefix list to associate with the core network.
1642
+ # @return [String]
1643
+ #
1644
+ # @!attribute [rw] prefix_list_alias
1645
+ # An optional alias for the prefix list association.
1646
+ # @return [String]
1647
+ #
1648
+ # @!attribute [rw] client_token
1649
+ # A unique, case-sensitive identifier that you provide to ensure the
1650
+ # idempotency of the request.
1651
+ #
1652
+ # **A suitable default value is auto-generated.** You should normally
1653
+ # not need to pass this option.
1654
+ # @return [String]
1655
+ #
1656
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateCoreNetworkPrefixListAssociationRequest AWS API Documentation
1657
+ #
1658
+ class CreateCoreNetworkPrefixListAssociationRequest < Struct.new(
1659
+ :core_network_id,
1660
+ :prefix_list_arn,
1661
+ :prefix_list_alias,
1662
+ :client_token)
1663
+ SENSITIVE = []
1664
+ include Aws::Structure
1665
+ end
1666
+
1667
+ # @!attribute [rw] core_network_id
1668
+ # The ID of the core network associated with the prefix list.
1669
+ # @return [String]
1670
+ #
1671
+ # @!attribute [rw] prefix_list_arn
1672
+ # The ARN of the prefix list that was associated with the core
1673
+ # network.
1674
+ # @return [String]
1675
+ #
1676
+ # @!attribute [rw] prefix_list_alias
1677
+ # The alias of the prefix list association, if provided.
1678
+ # @return [String]
1679
+ #
1680
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateCoreNetworkPrefixListAssociationResponse AWS API Documentation
1681
+ #
1682
+ class CreateCoreNetworkPrefixListAssociationResponse < Struct.new(
1683
+ :core_network_id,
1684
+ :prefix_list_arn,
1685
+ :prefix_list_alias)
1686
+ SENSITIVE = []
1687
+ include Aws::Structure
1688
+ end
1689
+
1514
1690
  # @!attribute [rw] global_network_id
1515
1691
  # The ID of the global network that a core network will be a part of.
1516
1692
  # @return [String]
@@ -1645,6 +1821,11 @@ module Aws::NetworkManager
1645
1821
  # The ARN of the Direct Connect gateway attachment.
1646
1822
  # @return [String]
1647
1823
  #
1824
+ # @!attribute [rw] routing_policy_label
1825
+ # The routing policy label to apply to the Direct Connect Gateway
1826
+ # attachment for traffic routing decisions.
1827
+ # @return [String]
1828
+ #
1648
1829
  # @!attribute [rw] edge_locations
1649
1830
  # One or more core network edge locations that the Direct Connect
1650
1831
  # gateway attachment is associated with.
@@ -1667,6 +1848,7 @@ module Aws::NetworkManager
1667
1848
  class CreateDirectConnectGatewayAttachmentRequest < Struct.new(
1668
1849
  :core_network_id,
1669
1850
  :direct_connect_gateway_arn,
1851
+ :routing_policy_label,
1670
1852
  :edge_locations,
1671
1853
  :tags,
1672
1854
  :client_token)
@@ -1838,6 +2020,11 @@ module Aws::NetworkManager
1838
2020
  # The ARN identifying the VPN attachment.
1839
2021
  # @return [String]
1840
2022
  #
2023
+ # @!attribute [rw] routing_policy_label
2024
+ # The routing policy label to apply to the Site-to-Site VPN attachment
2025
+ # for traffic routing decisions.
2026
+ # @return [String]
2027
+ #
1841
2028
  # @!attribute [rw] tags
1842
2029
  # The tags associated with the request.
1843
2030
  # @return [Array<Types::Tag>]
@@ -1854,6 +2041,7 @@ module Aws::NetworkManager
1854
2041
  class CreateSiteToSiteVpnAttachmentRequest < Struct.new(
1855
2042
  :core_network_id,
1856
2043
  :vpn_connection_arn,
2044
+ :routing_policy_label,
1857
2045
  :tags,
1858
2046
  :client_token)
1859
2047
  SENSITIVE = []
@@ -1925,6 +2113,11 @@ module Aws::NetworkManager
1925
2113
  # "arn:aws:ec2:us-west-2:123456789012:transit-gateway-route-table/tgw-rtb-9876543210123456"`.
1926
2114
  # @return [String]
1927
2115
  #
2116
+ # @!attribute [rw] routing_policy_label
2117
+ # The routing policy label to apply to the Transit Gateway route table
2118
+ # attachment for traffic routing decisions.
2119
+ # @return [String]
2120
+ #
1928
2121
  # @!attribute [rw] tags
1929
2122
  # The list of key-value tags associated with the request.
1930
2123
  # @return [Array<Types::Tag>]
@@ -1941,6 +2134,7 @@ module Aws::NetworkManager
1941
2134
  class CreateTransitGatewayRouteTableAttachmentRequest < Struct.new(
1942
2135
  :peering_id,
1943
2136
  :transit_gateway_route_table_arn,
2137
+ :routing_policy_label,
1944
2138
  :tags,
1945
2139
  :client_token)
1946
2140
  SENSITIVE = []
@@ -1976,6 +2170,11 @@ module Aws::NetworkManager
1976
2170
  # Options for the VPC attachment.
1977
2171
  # @return [Types::VpcOptions]
1978
2172
  #
2173
+ # @!attribute [rw] routing_policy_label
2174
+ # The routing policy label to apply to the VPC attachment for traffic
2175
+ # routing decisions.
2176
+ # @return [String]
2177
+ #
1979
2178
  # @!attribute [rw] tags
1980
2179
  # The key-value tags associated with the request.
1981
2180
  # @return [Array<Types::Tag>]
@@ -1994,6 +2193,7 @@ module Aws::NetworkManager
1994
2193
  :vpc_arn,
1995
2194
  :subnet_arns,
1996
2195
  :options,
2196
+ :routing_policy_label,
1997
2197
  :tags,
1998
2198
  :client_token)
1999
2199
  SENSITIVE = []
@@ -2153,6 +2353,43 @@ module Aws::NetworkManager
2153
2353
  include Aws::Structure
2154
2354
  end
2155
2355
 
2356
+ # @!attribute [rw] core_network_id
2357
+ # The ID of the core network from which to delete the prefix list
2358
+ # association.
2359
+ # @return [String]
2360
+ #
2361
+ # @!attribute [rw] prefix_list_arn
2362
+ # The ARN of the prefix list to disassociate from the core network.
2363
+ # @return [String]
2364
+ #
2365
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DeleteCoreNetworkPrefixListAssociationRequest AWS API Documentation
2366
+ #
2367
+ class DeleteCoreNetworkPrefixListAssociationRequest < Struct.new(
2368
+ :core_network_id,
2369
+ :prefix_list_arn)
2370
+ SENSITIVE = []
2371
+ include Aws::Structure
2372
+ end
2373
+
2374
+ # @!attribute [rw] core_network_id
2375
+ # The ID of the core network from which the prefix list association
2376
+ # was deleted.
2377
+ # @return [String]
2378
+ #
2379
+ # @!attribute [rw] prefix_list_arn
2380
+ # The ARN of the prefix list that was disassociated from the core
2381
+ # network.
2382
+ # @return [String]
2383
+ #
2384
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DeleteCoreNetworkPrefixListAssociationResponse AWS API Documentation
2385
+ #
2386
+ class DeleteCoreNetworkPrefixListAssociationResponse < Struct.new(
2387
+ :core_network_id,
2388
+ :prefix_list_arn)
2389
+ SENSITIVE = []
2390
+ include Aws::Structure
2391
+ end
2392
+
2156
2393
  # @!attribute [rw] core_network_id
2157
2394
  # The network ID of the deleted core network.
2158
2395
  # @return [String]
@@ -4074,6 +4311,52 @@ module Aws::NetworkManager
4074
4311
  include Aws::Structure
4075
4312
  end
4076
4313
 
4314
+ # @!attribute [rw] core_network_id
4315
+ # The ID of the core network to list attachment routing policy
4316
+ # associations for.
4317
+ # @return [String]
4318
+ #
4319
+ # @!attribute [rw] attachment_id
4320
+ # The ID of a specific attachment to filter the routing policy
4321
+ # associations.
4322
+ # @return [String]
4323
+ #
4324
+ # @!attribute [rw] max_results
4325
+ # The maximum number of results to return in a single page.
4326
+ # @return [Integer]
4327
+ #
4328
+ # @!attribute [rw] next_token
4329
+ # The token for the next page of results.
4330
+ # @return [String]
4331
+ #
4332
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListAttachmentRoutingPolicyAssociationsRequest AWS API Documentation
4333
+ #
4334
+ class ListAttachmentRoutingPolicyAssociationsRequest < Struct.new(
4335
+ :core_network_id,
4336
+ :attachment_id,
4337
+ :max_results,
4338
+ :next_token)
4339
+ SENSITIVE = []
4340
+ include Aws::Structure
4341
+ end
4342
+
4343
+ # @!attribute [rw] attachment_routing_policy_associations
4344
+ # The list of attachment routing policy associations.
4345
+ # @return [Array<Types::AttachmentRoutingPolicyAssociationSummary>]
4346
+ #
4347
+ # @!attribute [rw] next_token
4348
+ # The token for the next page of results.
4349
+ # @return [String]
4350
+ #
4351
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListAttachmentRoutingPolicyAssociationsResponse AWS API Documentation
4352
+ #
4353
+ class ListAttachmentRoutingPolicyAssociationsResponse < Struct.new(
4354
+ :attachment_routing_policy_associations,
4355
+ :next_token)
4356
+ SENSITIVE = []
4357
+ include Aws::Structure
4358
+ end
4359
+
4077
4360
  # @!attribute [rw] core_network_id
4078
4361
  # The ID of a core network.
4079
4362
  # @return [String]
@@ -4211,6 +4494,126 @@ module Aws::NetworkManager
4211
4494
  include Aws::Structure
4212
4495
  end
4213
4496
 
4497
+ # @!attribute [rw] core_network_id
4498
+ # The ID of the core network to list prefix list associations for.
4499
+ # @return [String]
4500
+ #
4501
+ # @!attribute [rw] prefix_list_arn
4502
+ # The ARN of a specific prefix list to filter the associations.
4503
+ # @return [String]
4504
+ #
4505
+ # @!attribute [rw] max_results
4506
+ # The maximum number of results to return in a single page.
4507
+ # @return [Integer]
4508
+ #
4509
+ # @!attribute [rw] next_token
4510
+ # The token for the next page of results.
4511
+ # @return [String]
4512
+ #
4513
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListCoreNetworkPrefixListAssociationsRequest AWS API Documentation
4514
+ #
4515
+ class ListCoreNetworkPrefixListAssociationsRequest < Struct.new(
4516
+ :core_network_id,
4517
+ :prefix_list_arn,
4518
+ :max_results,
4519
+ :next_token)
4520
+ SENSITIVE = []
4521
+ include Aws::Structure
4522
+ end
4523
+
4524
+ # @!attribute [rw] prefix_list_associations
4525
+ # The list of prefix list associations for the core network.
4526
+ # @return [Array<Types::PrefixListAssociation>]
4527
+ #
4528
+ # @!attribute [rw] next_token
4529
+ # The token for the next page of results.
4530
+ # @return [String]
4531
+ #
4532
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListCoreNetworkPrefixListAssociationsResponse AWS API Documentation
4533
+ #
4534
+ class ListCoreNetworkPrefixListAssociationsResponse < Struct.new(
4535
+ :prefix_list_associations,
4536
+ :next_token)
4537
+ SENSITIVE = []
4538
+ include Aws::Structure
4539
+ end
4540
+
4541
+ # @!attribute [rw] core_network_id
4542
+ # The ID of the core network to retrieve routing information for.
4543
+ # @return [String]
4544
+ #
4545
+ # @!attribute [rw] segment_name
4546
+ # The name of the segment to filter routing information by.
4547
+ # @return [String]
4548
+ #
4549
+ # @!attribute [rw] edge_location
4550
+ # The edge location to filter routing information by.
4551
+ # @return [String]
4552
+ #
4553
+ # @!attribute [rw] next_hop_filters
4554
+ # Filters to apply based on next hop information.
4555
+ # @return [Hash<String,Array<String>>]
4556
+ #
4557
+ # @!attribute [rw] local_preference_matches
4558
+ # Local preference values to match when filtering routing information.
4559
+ # @return [Array<String>]
4560
+ #
4561
+ # @!attribute [rw] exact_as_path_matches
4562
+ # Exact AS path values to match when filtering routing information.
4563
+ # @return [Array<String>]
4564
+ #
4565
+ # @!attribute [rw] med_matches
4566
+ # Multi-Exit Discriminator (MED) values to match when filtering
4567
+ # routing information.
4568
+ # @return [Array<String>]
4569
+ #
4570
+ # @!attribute [rw] community_matches
4571
+ # BGP community values to match when filtering routing information.
4572
+ # @return [Array<String>]
4573
+ #
4574
+ # @!attribute [rw] max_results
4575
+ # The maximum number of routing information entries to return in a
4576
+ # single page.
4577
+ # @return [Integer]
4578
+ #
4579
+ # @!attribute [rw] next_token
4580
+ # The token for the next page of results.
4581
+ # @return [String]
4582
+ #
4583
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListCoreNetworkRoutingInformationRequest AWS API Documentation
4584
+ #
4585
+ class ListCoreNetworkRoutingInformationRequest < Struct.new(
4586
+ :core_network_id,
4587
+ :segment_name,
4588
+ :edge_location,
4589
+ :next_hop_filters,
4590
+ :local_preference_matches,
4591
+ :exact_as_path_matches,
4592
+ :med_matches,
4593
+ :community_matches,
4594
+ :max_results,
4595
+ :next_token)
4596
+ SENSITIVE = []
4597
+ include Aws::Structure
4598
+ end
4599
+
4600
+ # @!attribute [rw] core_network_routing_information
4601
+ # The list of routing information for the core network.
4602
+ # @return [Array<Types::CoreNetworkRoutingInformation>]
4603
+ #
4604
+ # @!attribute [rw] next_token
4605
+ # The token for the next page of results.
4606
+ # @return [String]
4607
+ #
4608
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListCoreNetworkRoutingInformationResponse AWS API Documentation
4609
+ #
4610
+ class ListCoreNetworkRoutingInformationResponse < Struct.new(
4611
+ :core_network_routing_information,
4612
+ :next_token)
4613
+ SENSITIVE = []
4614
+ include Aws::Structure
4615
+ end
4616
+
4214
4617
  # @!attribute [rw] max_results
4215
4618
  # The maximum number of results to return.
4216
4619
  # @return [Integer]
@@ -4864,6 +5267,30 @@ module Aws::NetworkManager
4864
5267
  include Aws::Structure
4865
5268
  end
4866
5269
 
5270
+ # Information about a prefix list association with a core network.
5271
+ #
5272
+ # @!attribute [rw] core_network_id
5273
+ # The core network id in the association.
5274
+ # @return [String]
5275
+ #
5276
+ # @!attribute [rw] prefix_list_arn
5277
+ # The ARN of the prefix list in the association.
5278
+ # @return [String]
5279
+ #
5280
+ # @!attribute [rw] prefix_list_alias
5281
+ # The alias of the prefix list in the association.
5282
+ # @return [String]
5283
+ #
5284
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/PrefixListAssociation AWS API Documentation
5285
+ #
5286
+ class PrefixListAssociation < Struct.new(
5287
+ :core_network_id,
5288
+ :prefix_list_arn,
5289
+ :prefix_list_alias)
5290
+ SENSITIVE = []
5291
+ include Aws::Structure
5292
+ end
5293
+
4867
5294
  # Describes proposed changes to a network function group.
4868
5295
  #
4869
5296
  # @!attribute [rw] tags
@@ -4915,6 +5342,59 @@ module Aws::NetworkManager
4915
5342
  include Aws::Structure
4916
5343
  end
4917
5344
 
5345
+ # @!attribute [rw] core_network_id
5346
+ # The ID of the core network containing the attachment.
5347
+ # @return [String]
5348
+ #
5349
+ # @!attribute [rw] attachment_id
5350
+ # The ID of the attachment to apply the routing policy label to.
5351
+ # @return [String]
5352
+ #
5353
+ # @!attribute [rw] routing_policy_label
5354
+ # The routing policy label to apply to the attachment.
5355
+ # @return [String]
5356
+ #
5357
+ # @!attribute [rw] client_token
5358
+ # A unique, case-sensitive identifier that you provide to ensure the
5359
+ # idempotency of the request.
5360
+ #
5361
+ # **A suitable default value is auto-generated.** You should normally
5362
+ # not need to pass this option.
5363
+ # @return [String]
5364
+ #
5365
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/PutAttachmentRoutingPolicyLabelRequest AWS API Documentation
5366
+ #
5367
+ class PutAttachmentRoutingPolicyLabelRequest < Struct.new(
5368
+ :core_network_id,
5369
+ :attachment_id,
5370
+ :routing_policy_label,
5371
+ :client_token)
5372
+ SENSITIVE = []
5373
+ include Aws::Structure
5374
+ end
5375
+
5376
+ # @!attribute [rw] core_network_id
5377
+ # The ID of the core network containing the attachment.
5378
+ # @return [String]
5379
+ #
5380
+ # @!attribute [rw] attachment_id
5381
+ # The ID of the attachment that received the routing policy label.
5382
+ # @return [String]
5383
+ #
5384
+ # @!attribute [rw] routing_policy_label
5385
+ # The routing policy label that was applied to the attachment.
5386
+ # @return [String]
5387
+ #
5388
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/PutAttachmentRoutingPolicyLabelResponse AWS API Documentation
5389
+ #
5390
+ class PutAttachmentRoutingPolicyLabelResponse < Struct.new(
5391
+ :core_network_id,
5392
+ :attachment_id,
5393
+ :routing_policy_label)
5394
+ SENSITIVE = []
5395
+ include Aws::Structure
5396
+ end
5397
+
4918
5398
  # @!attribute [rw] core_network_id
4919
5399
  # The ID of a core network.
4920
5400
  # @return [String]
@@ -5055,6 +5535,46 @@ module Aws::NetworkManager
5055
5535
  include Aws::Structure
5056
5536
  end
5057
5537
 
5538
+ # @!attribute [rw] core_network_id
5539
+ # The ID of the core network containing the attachment.
5540
+ # @return [String]
5541
+ #
5542
+ # @!attribute [rw] attachment_id
5543
+ # The ID of the attachment to remove the routing policy label from.
5544
+ # @return [String]
5545
+ #
5546
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/RemoveAttachmentRoutingPolicyLabelRequest AWS API Documentation
5547
+ #
5548
+ class RemoveAttachmentRoutingPolicyLabelRequest < Struct.new(
5549
+ :core_network_id,
5550
+ :attachment_id)
5551
+ SENSITIVE = []
5552
+ include Aws::Structure
5553
+ end
5554
+
5555
+ # @!attribute [rw] core_network_id
5556
+ # The ID of the core network containing the attachment.
5557
+ # @return [String]
5558
+ #
5559
+ # @!attribute [rw] attachment_id
5560
+ # The ID of the attachment from which the routing policy label was
5561
+ # removed.
5562
+ # @return [String]
5563
+ #
5564
+ # @!attribute [rw] routing_policy_label
5565
+ # The routing policy label that was removed from the attachment.
5566
+ # @return [String]
5567
+ #
5568
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/RemoveAttachmentRoutingPolicyLabelResponse AWS API Documentation
5569
+ #
5570
+ class RemoveAttachmentRoutingPolicyLabelResponse < Struct.new(
5571
+ :core_network_id,
5572
+ :attachment_id,
5573
+ :routing_policy_label)
5574
+ SENSITIVE = []
5575
+ include Aws::Structure
5576
+ end
5577
+
5058
5578
  # The specified resource could not be found.
5059
5579
  #
5060
5580
  # @!attribute [rw] message
@@ -5319,6 +5839,65 @@ module Aws::NetworkManager
5319
5839
  include Aws::Structure
5320
5840
  end
5321
5841
 
5842
+ # Information about the next hop for a route in the core network.
5843
+ #
5844
+ # @!attribute [rw] ip_address
5845
+ # The IP address of the next hop.
5846
+ # @return [String]
5847
+ #
5848
+ # @!attribute [rw] core_network_attachment_id
5849
+ # The ID of the core network attachment for the next hop.
5850
+ # @return [String]
5851
+ #
5852
+ # @!attribute [rw] resource_id
5853
+ # The ID of the resource for the next hop.
5854
+ # @return [String]
5855
+ #
5856
+ # @!attribute [rw] resource_type
5857
+ # The type of resource for the next hop.
5858
+ # @return [String]
5859
+ #
5860
+ # @!attribute [rw] segment_name
5861
+ # The name of the segment for the next hop.
5862
+ # @return [String]
5863
+ #
5864
+ # @!attribute [rw] edge_location
5865
+ # The edge location for the next hop.
5866
+ # @return [String]
5867
+ #
5868
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/RoutingInformationNextHop AWS API Documentation
5869
+ #
5870
+ class RoutingInformationNextHop < Struct.new(
5871
+ :ip_address,
5872
+ :core_network_attachment_id,
5873
+ :resource_id,
5874
+ :resource_type,
5875
+ :segment_name,
5876
+ :edge_location)
5877
+ SENSITIVE = []
5878
+ include Aws::Structure
5879
+ end
5880
+
5881
+ # Information about a routing policy association.
5882
+ #
5883
+ # @!attribute [rw] routing_policy_names
5884
+ # The names of the routing policies in the association.
5885
+ # @return [Array<String>]
5886
+ #
5887
+ # @!attribute [rw] shared_segments
5888
+ # The names of the segments that are shared with each other in the
5889
+ # association.
5890
+ # @return [Array<String>]
5891
+ #
5892
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/RoutingPolicyAssociationDetail AWS API Documentation
5893
+ #
5894
+ class RoutingPolicyAssociationDetail < Struct.new(
5895
+ :routing_policy_names,
5896
+ :shared_segments)
5897
+ SENSITIVE = []
5898
+ include Aws::Structure
5899
+ end
5900
+
5322
5901
  # Describes the action that the service insertion will take for any
5323
5902
  # segments associated with it.
5324
5903
  #