aws-sdk-networkflowmonitor 1.14.0 → 1.15.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 589086d78138ba5bf820cf031684e39552e185b7f953d355f894aa94e9d0606b
4
- data.tar.gz: 2265e899f0dc75ad85d8536091ffec0eea81f2e4f948c1365e48e3006cdb5cb5
3
+ metadata.gz: b39c9bbcb227231f4611c9468e940ce8c12f7be19ea8313d11818efd1654d9d5
4
+ data.tar.gz: 3aed9448fdb6ba6aab93e04c70b9a6ee07b325fc9713764b459e2af7cf9bb88e
5
5
  SHA512:
6
- metadata.gz: 219d3f975ad4c775e93c26a61a2a0c62cf6e0a43f321e7a860e4eef60c59dc9fd161e82a6b0eee530452ec4385c7b1faced52903ae39481a308a3ae8aa9f239e
7
- data.tar.gz: 3efb3efa8ec9e0a567b57f9d2fb8a16b13b9304752f1053f7b3cbbc285bb615a63846b7ac714db59e90c77b319b00383bc971168c40cd9f90d6094d7afdfccc6
6
+ metadata.gz: d5845637ab87329d46dee90471476ce014d817383baece0bf37a78bd548cf6bf7192001a2294cec02c933b5d260191e3185ea7b1f42d38e28ace1b211a83e3e8
7
+ data.tar.gz: 6f29f009dc3924ce076f505a806bc81e7fb30bb3ea0c5bb62a1b3a32f19ba6fc13f1141a0693e867f931cc54cea5d0506e55c5d86d0ad417cedffe1f6fb1c28c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.15.0 (2025-09-10)
5
+ ------------------
6
+
7
+ * Feature - Added new enum value (AWS::Region) for type field under MonitorLocalResource and MonitorRemoteResource. Workload Insights and Monitor top contributors queries now support a new DestinationCategory (INTER_REGION).
8
+
4
9
  1.14.0 (2025-08-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.15.0
@@ -480,7 +480,7 @@ module Aws::NetworkFlowMonitor
480
480
  # resources, so that you can monitor network performance for one or
481
481
  # several of your workloads. For each monitor, Network Flow Monitor
482
482
  # publishes detailed end-to-end performance metrics and a network health
483
- # indicators (NHI) that informs you whether there were Amazon Web
483
+ # indicator (NHI) that informs you whether there were Amazon Web
484
484
  # Services network issues for one or more of the network flows tracked
485
485
  # by a monitor, during a time period that you choose.
486
486
  #
@@ -488,18 +488,37 @@ module Aws::NetworkFlowMonitor
488
488
  # The name of the monitor.
489
489
  #
490
490
  # @option params [required, Array<Types::MonitorLocalResource>] :local_resources
491
- # The local resources to monitor. A local resource, in a bi-directional
492
- # flow of a workload, is the host where the agent is installed. For
493
- # example, if a workload consists of an interaction between a web
494
- # service and a backend database (for example, Amazon Relational
495
- # Database Service (RDS)), the EC2 instance hosting the web service,
496
- # which also runs the agent, is the local resource.
491
+ # The local resources to monitor. A local resource in a workload is the
492
+ # location of the host, or hosts, where the Network Flow Monitor agent
493
+ # is installed. For example, if a workload consists of an interaction
494
+ # between a web service and a backend database (for example, Amazon
495
+ # Dynamo DB), the subnet with the EC2 instance that hosts the web
496
+ # service, which also runs the agent, is the local resource.
497
+ #
498
+ # Be aware that all local resources must belong to the current Region.
497
499
  #
498
500
  # @option params [Array<Types::MonitorRemoteResource>] :remote_resources
499
501
  # The remote resources to monitor. A remote resource is the other
500
502
  # endpoint in the bi-directional flow of a workload, with a local
501
- # resource. For example, Amazon Relational Database Service (RDS) can be
502
- # a remote resource.
503
+ # resource. For example, Amazon Dynamo DB can be a remote resource.
504
+ #
505
+ # When you specify remote resources, be aware that specific combinations
506
+ # of resources are allowed and others are not, including the following
507
+ # constraints:
508
+ #
509
+ # * All remote resources that you specify must all belong to a single
510
+ # Region.
511
+ #
512
+ # * If you specify Amazon Web Services services as remote resources, any
513
+ # other remote resources that you specify must be in the current
514
+ # Region.
515
+ #
516
+ # * When you specify a remote resource for another Region, you can only
517
+ # specify the `Region` resource type. You cannot specify a subnet,
518
+ # VPC, or Availability Zone in another Region.
519
+ #
520
+ # * If you leave the `RemoteResources` parameter empty, the monitor will
521
+ # include all network flows that terminate in the current Region.
503
522
  #
504
523
  # @option params [required, String] :scope_arn
505
524
  # The Amazon Resource Name (ARN) of the scope for the monitor.
@@ -532,13 +551,13 @@ module Aws::NetworkFlowMonitor
532
551
  # monitor_name: "ResourceName", # required
533
552
  # local_resources: [ # required
534
553
  # {
535
- # type: "AWS::EC2::VPC", # required, accepts AWS::EC2::VPC, AWS::AvailabilityZone, AWS::EC2::Subnet
554
+ # type: "AWS::EC2::VPC", # required, accepts AWS::EC2::VPC, AWS::AvailabilityZone, AWS::EC2::Subnet, AWS::Region
536
555
  # identifier: "String", # required
537
556
  # },
538
557
  # ],
539
558
  # remote_resources: [
540
559
  # {
541
- # type: "AWS::EC2::VPC", # required, accepts AWS::EC2::VPC, AWS::AvailabilityZone, AWS::EC2::Subnet, AWS::AWSService
560
+ # type: "AWS::EC2::VPC", # required, accepts AWS::EC2::VPC, AWS::AvailabilityZone, AWS::EC2::Subnet, AWS::AWSService, AWS::Region
542
561
  # identifier: "String", # required
543
562
  # },
544
563
  # ],
@@ -555,10 +574,10 @@ module Aws::NetworkFlowMonitor
555
574
  # resp.monitor_name #=> String
556
575
  # resp.monitor_status #=> String, one of "PENDING", "ACTIVE", "INACTIVE", "ERROR", "DELETING"
557
576
  # resp.local_resources #=> Array
558
- # resp.local_resources[0].type #=> String, one of "AWS::EC2::VPC", "AWS::AvailabilityZone", "AWS::EC2::Subnet"
577
+ # resp.local_resources[0].type #=> String, one of "AWS::EC2::VPC", "AWS::AvailabilityZone", "AWS::EC2::Subnet", "AWS::Region"
559
578
  # resp.local_resources[0].identifier #=> String
560
579
  # resp.remote_resources #=> Array
561
- # resp.remote_resources[0].type #=> String, one of "AWS::EC2::VPC", "AWS::AvailabilityZone", "AWS::EC2::Subnet", "AWS::AWSService"
580
+ # resp.remote_resources[0].type #=> String, one of "AWS::EC2::VPC", "AWS::AvailabilityZone", "AWS::EC2::Subnet", "AWS::AWSService", "AWS::Region"
562
581
  # resp.remote_resources[0].identifier #=> String
563
582
  # resp.created_at #=> Time
564
583
  # resp.modified_at #=> Time
@@ -574,18 +593,34 @@ module Aws::NetworkFlowMonitor
574
593
  req.send_request(options)
575
594
  end
576
595
 
577
- # Create a scope of resources that you want to be available for Network
578
- # Flow Monitor to generate metrics for, when you have active agents on
579
- # those resources sending metrics reports to the Network Flow Monitor
580
- # backend. This call returns a scope ID to identify the scope.
596
+ # In Network Flow Monitor, you specify a scope for the service to
597
+ # generate metrics for. By using the scope, Network Flow Monitor can
598
+ # generate a topology of all the resources to measure performance
599
+ # metrics for. When you create a scope, you enable permissions for
600
+ # Network Flow Monitor.
601
+ #
602
+ # A scope is a Region-account pair or multiple Region-account pairs.
603
+ # Network Flow Monitor uses your scope to determine all the resources
604
+ # (the topology) where Network Flow Monitor will gather network flow
605
+ # performance metrics for you. To provide performance metrics, Network
606
+ # Flow Monitor uses the data that is sent by the Network Flow Monitor
607
+ # agents you install on the resources.
608
+ #
609
+ # To define the Region-account pairs for your scope, the Network Flow
610
+ # Monitor API uses the following constucts, which allow for future
611
+ # flexibility in defining scopes:
581
612
  #
582
- # When you create a scope, you enable permissions for Network Flow
583
- # Monitor. The scope is set to the resources for the Amazon Web Services
584
- # that enables the feature.
613
+ # * *Targets*, which are arrays of targetResources.
614
+ #
615
+ # * *Target resources*, which are Region-targetIdentifier pairs.
616
+ #
617
+ # * *Target identifiers*, made up of a targetID (currently always an
618
+ # account ID) and a targetType (currently always an account).
585
619
  #
586
620
  # @option params [required, Array<Types::TargetResource>] :targets
587
- # The targets to define the scope to be monitored. Currently, a target
588
- # is an Amazon Web Services account.
621
+ # The targets to define the scope to be monitored. A target is an array
622
+ # of targetResources, which are currently Region-account pairs, defined
623
+ # by targetResource constructs.
589
624
  #
590
625
  # @option params [String] :client_token
591
626
  # A unique, case-sensitive string of up to 64 ASCII characters that you
@@ -719,10 +754,10 @@ module Aws::NetworkFlowMonitor
719
754
  # resp.monitor_name #=> String
720
755
  # resp.monitor_status #=> String, one of "PENDING", "ACTIVE", "INACTIVE", "ERROR", "DELETING"
721
756
  # resp.local_resources #=> Array
722
- # resp.local_resources[0].type #=> String, one of "AWS::EC2::VPC", "AWS::AvailabilityZone", "AWS::EC2::Subnet"
757
+ # resp.local_resources[0].type #=> String, one of "AWS::EC2::VPC", "AWS::AvailabilityZone", "AWS::EC2::Subnet", "AWS::Region"
723
758
  # resp.local_resources[0].identifier #=> String
724
759
  # resp.remote_resources #=> Array
725
- # resp.remote_resources[0].type #=> String, one of "AWS::EC2::VPC", "AWS::AvailabilityZone", "AWS::EC2::Subnet", "AWS::AWSService"
760
+ # resp.remote_resources[0].type #=> String, one of "AWS::EC2::VPC", "AWS::AvailabilityZone", "AWS::EC2::Subnet", "AWS::AWSService", "AWS::Region"
726
761
  # resp.remote_resources[0].identifier #=> String
727
762
  # resp.created_at #=> Time
728
763
  # resp.modified_at #=> Time
@@ -797,7 +832,7 @@ module Aws::NetworkFlowMonitor
797
832
  # resp.top_contributors[0].local_az #=> String
798
833
  # resp.top_contributors[0].local_subnet_id #=> String
799
834
  # resp.top_contributors[0].target_port #=> Integer
800
- # resp.top_contributors[0].destination_category #=> String, one of "INTRA_AZ", "INTER_AZ", "INTER_VPC", "UNCLASSIFIED", "AMAZON_S3", "AMAZON_DYNAMODB"
835
+ # resp.top_contributors[0].destination_category #=> String, one of "INTRA_AZ", "INTER_AZ", "INTER_VPC", "UNCLASSIFIED", "AMAZON_S3", "AMAZON_DYNAMODB", "INTER_REGION"
801
836
  # resp.top_contributors[0].remote_vpc_id #=> String
802
837
  # resp.top_contributors[0].remote_region #=> String
803
838
  # resp.top_contributors[0].remote_az #=> String
@@ -1327,8 +1362,8 @@ module Aws::NetworkFlowMonitor
1327
1362
  # The name of the monitor.
1328
1363
  #
1329
1364
  # @option params [required, Time,DateTime,Date,Integer,String] :start_time
1330
- # The timestamp that is the date and time beginning of the period that
1331
- # you want to retrieve results for with your query.
1365
+ # The timestamp that is the date and time that is the beginning of the
1366
+ # period that you want to retrieve results for with your query.
1332
1367
  #
1333
1368
  # @option params [required, Time,DateTime,Date,Integer,String] :end_time
1334
1369
  # The timestamp that is the date and time end of the period that you
@@ -1350,6 +1385,9 @@ module Aws::NetworkFlowMonitor
1350
1385
  #
1351
1386
  # * `INTER_AZ`: Top contributor network flows between Availability Zones
1352
1387
  #
1388
+ # * `INTER_REGION`: Top contributor network flows between Regions (to
1389
+ # the edge of another Region)
1390
+ #
1353
1391
  # * `INTER_VPC`: Top contributor network flows between VPCs
1354
1392
  #
1355
1393
  # * `AMAZON_S3`: Top contributor network flows to or from Amazon S3
@@ -1374,7 +1412,7 @@ module Aws::NetworkFlowMonitor
1374
1412
  # start_time: Time.now, # required
1375
1413
  # end_time: Time.now, # required
1376
1414
  # metric_name: "ROUND_TRIP_TIME", # required, accepts ROUND_TRIP_TIME, TIMEOUTS, RETRANSMISSIONS, DATA_TRANSFERRED
1377
- # destination_category: "INTRA_AZ", # required, accepts INTRA_AZ, INTER_AZ, INTER_VPC, UNCLASSIFIED, AMAZON_S3, AMAZON_DYNAMODB
1415
+ # destination_category: "INTRA_AZ", # required, accepts INTRA_AZ, INTER_AZ, INTER_VPC, UNCLASSIFIED, AMAZON_S3, AMAZON_DYNAMODB, INTER_REGION
1378
1416
  # limit: 1,
1379
1417
  # })
1380
1418
  #
@@ -1416,8 +1454,8 @@ module Aws::NetworkFlowMonitor
1416
1454
  # ID is returned from a `CreateScope` API call.
1417
1455
  #
1418
1456
  # @option params [required, Time,DateTime,Date,Integer,String] :start_time
1419
- # The timestamp that is the date and time beginning of the period that
1420
- # you want to retrieve results for with your query.
1457
+ # The timestamp that is the date and time that is the beginning of the
1458
+ # period that you want to retrieve results for with your query.
1421
1459
  #
1422
1460
  # @option params [required, Time,DateTime,Date,Integer,String] :end_time
1423
1461
  # The timestamp that is the date and time end of the period that you
@@ -1438,6 +1476,9 @@ module Aws::NetworkFlowMonitor
1438
1476
  #
1439
1477
  # * `INTER_AZ`: Top contributor network flows between Availability Zones
1440
1478
  #
1479
+ # * `INTER_REGION`: Top contributor network flows between Regions (to
1480
+ # the edge of another Region)
1481
+ #
1441
1482
  # * `INTER_VPC`: Top contributor network flows between VPCs
1442
1483
  #
1443
1484
  # * `AWS_SERVICES`: Top contributor network flows to or from Amazon Web
@@ -1460,7 +1501,7 @@ module Aws::NetworkFlowMonitor
1460
1501
  # start_time: Time.now, # required
1461
1502
  # end_time: Time.now, # required
1462
1503
  # metric_name: "TIMEOUTS", # required, accepts TIMEOUTS, RETRANSMISSIONS, DATA_TRANSFERRED
1463
- # destination_category: "INTRA_AZ", # required, accepts INTRA_AZ, INTER_AZ, INTER_VPC, UNCLASSIFIED, AMAZON_S3, AMAZON_DYNAMODB
1504
+ # destination_category: "INTRA_AZ", # required, accepts INTRA_AZ, INTER_AZ, INTER_VPC, UNCLASSIFIED, AMAZON_S3, AMAZON_DYNAMODB, INTER_REGION
1464
1505
  # limit: 1,
1465
1506
  # })
1466
1507
  #
@@ -1502,8 +1543,8 @@ module Aws::NetworkFlowMonitor
1502
1543
  # that includes all the resources for a specific root account.
1503
1544
  #
1504
1545
  # @option params [required, Time,DateTime,Date,Integer,String] :start_time
1505
- # The timestamp that is the date and time beginning of the period that
1506
- # you want to retrieve results for with your query.
1546
+ # The timestamp that is the date and time that is the beginning of the
1547
+ # period that you want to retrieve results for with your query.
1507
1548
  #
1508
1549
  # @option params [required, Time,DateTime,Date,Integer,String] :end_time
1509
1550
  # The timestamp that is the date and time end of the period that you
@@ -1524,6 +1565,9 @@ module Aws::NetworkFlowMonitor
1524
1565
  #
1525
1566
  # * `INTER_AZ`: Top contributor network flows between Availability Zones
1526
1567
  #
1568
+ # * `INTER_REGION`: Top contributor network flows between Regions (to
1569
+ # the edge of another Region)
1570
+ #
1527
1571
  # * `INTER_VPC`: Top contributor network flows between VPCs
1528
1572
  #
1529
1573
  # * `AWS_SERVICES`: Top contributor network flows to or from Amazon Web
@@ -1543,7 +1587,7 @@ module Aws::NetworkFlowMonitor
1543
1587
  # start_time: Time.now, # required
1544
1588
  # end_time: Time.now, # required
1545
1589
  # metric_name: "TIMEOUTS", # required, accepts TIMEOUTS, RETRANSMISSIONS, DATA_TRANSFERRED
1546
- # destination_category: "INTRA_AZ", # required, accepts INTRA_AZ, INTER_AZ, INTER_VPC, UNCLASSIFIED, AMAZON_S3, AMAZON_DYNAMODB
1590
+ # destination_category: "INTRA_AZ", # required, accepts INTRA_AZ, INTER_AZ, INTER_VPC, UNCLASSIFIED, AMAZON_S3, AMAZON_DYNAMODB, INTER_REGION
1547
1591
  # })
1548
1592
  #
1549
1593
  # @example Response structure
@@ -1728,21 +1772,31 @@ module Aws::NetworkFlowMonitor
1728
1772
  # The name of the monitor.
1729
1773
  #
1730
1774
  # @option params [Array<Types::MonitorLocalResource>] :local_resources_to_add
1731
- # The local resources to add, as an array of resources with identifiers
1732
- # and types.
1775
+ # Additional local resources to specify network flows for a monitor, as
1776
+ # an array of resources with identifiers and types. A local resource in
1777
+ # a workload is the location of hosts where the Network Flow Monitor
1778
+ # agent is installed.
1733
1779
  #
1734
1780
  # @option params [Array<Types::MonitorLocalResource>] :local_resources_to_remove
1735
1781
  # The local resources to remove, as an array of resources with
1736
1782
  # identifiers and types.
1737
1783
  #
1738
1784
  # @option params [Array<Types::MonitorRemoteResource>] :remote_resources_to_add
1739
- # The remove resources to add, as an array of resources with identifiers
1785
+ # The remote resources to add, as an array of resources with identifiers
1740
1786
  # and types.
1741
1787
  #
1788
+ # A remote resource is the other endpoint in the flow of a workload,
1789
+ # with a local resource. For example, Amazon Dynamo DB can be a remote
1790
+ # resource.
1791
+ #
1742
1792
  # @option params [Array<Types::MonitorRemoteResource>] :remote_resources_to_remove
1743
- # The remove resources to remove, as an array of resources with
1793
+ # The remote resources to remove, as an array of resources with
1744
1794
  # identifiers and types.
1745
1795
  #
1796
+ # A remote resource is the other endpoint specified for the network flow
1797
+ # of a workload, with a local resource. For example, Amazon Dynamo DB
1798
+ # can be a remote resource.
1799
+ #
1746
1800
  # @option params [String] :client_token
1747
1801
  # A unique, case-sensitive string of up to 64 ASCII characters that you
1748
1802
  # specify to make an idempotent API request. Don't reuse the same
@@ -1768,25 +1822,25 @@ module Aws::NetworkFlowMonitor
1768
1822
  # monitor_name: "ResourceName", # required
1769
1823
  # local_resources_to_add: [
1770
1824
  # {
1771
- # type: "AWS::EC2::VPC", # required, accepts AWS::EC2::VPC, AWS::AvailabilityZone, AWS::EC2::Subnet
1825
+ # type: "AWS::EC2::VPC", # required, accepts AWS::EC2::VPC, AWS::AvailabilityZone, AWS::EC2::Subnet, AWS::Region
1772
1826
  # identifier: "String", # required
1773
1827
  # },
1774
1828
  # ],
1775
1829
  # local_resources_to_remove: [
1776
1830
  # {
1777
- # type: "AWS::EC2::VPC", # required, accepts AWS::EC2::VPC, AWS::AvailabilityZone, AWS::EC2::Subnet
1831
+ # type: "AWS::EC2::VPC", # required, accepts AWS::EC2::VPC, AWS::AvailabilityZone, AWS::EC2::Subnet, AWS::Region
1778
1832
  # identifier: "String", # required
1779
1833
  # },
1780
1834
  # ],
1781
1835
  # remote_resources_to_add: [
1782
1836
  # {
1783
- # type: "AWS::EC2::VPC", # required, accepts AWS::EC2::VPC, AWS::AvailabilityZone, AWS::EC2::Subnet, AWS::AWSService
1837
+ # type: "AWS::EC2::VPC", # required, accepts AWS::EC2::VPC, AWS::AvailabilityZone, AWS::EC2::Subnet, AWS::AWSService, AWS::Region
1784
1838
  # identifier: "String", # required
1785
1839
  # },
1786
1840
  # ],
1787
1841
  # remote_resources_to_remove: [
1788
1842
  # {
1789
- # type: "AWS::EC2::VPC", # required, accepts AWS::EC2::VPC, AWS::AvailabilityZone, AWS::EC2::Subnet, AWS::AWSService
1843
+ # type: "AWS::EC2::VPC", # required, accepts AWS::EC2::VPC, AWS::AvailabilityZone, AWS::EC2::Subnet, AWS::AWSService, AWS::Region
1790
1844
  # identifier: "String", # required
1791
1845
  # },
1792
1846
  # ],
@@ -1799,10 +1853,10 @@ module Aws::NetworkFlowMonitor
1799
1853
  # resp.monitor_name #=> String
1800
1854
  # resp.monitor_status #=> String, one of "PENDING", "ACTIVE", "INACTIVE", "ERROR", "DELETING"
1801
1855
  # resp.local_resources #=> Array
1802
- # resp.local_resources[0].type #=> String, one of "AWS::EC2::VPC", "AWS::AvailabilityZone", "AWS::EC2::Subnet"
1856
+ # resp.local_resources[0].type #=> String, one of "AWS::EC2::VPC", "AWS::AvailabilityZone", "AWS::EC2::Subnet", "AWS::Region"
1803
1857
  # resp.local_resources[0].identifier #=> String
1804
1858
  # resp.remote_resources #=> Array
1805
- # resp.remote_resources[0].type #=> String, one of "AWS::EC2::VPC", "AWS::AvailabilityZone", "AWS::EC2::Subnet", "AWS::AWSService"
1859
+ # resp.remote_resources[0].type #=> String, one of "AWS::EC2::VPC", "AWS::AvailabilityZone", "AWS::EC2::Subnet", "AWS::AWSService", "AWS::Region"
1806
1860
  # resp.remote_resources[0].identifier #=> String
1807
1861
  # resp.created_at #=> Time
1808
1862
  # resp.modified_at #=> Time
@@ -1904,7 +1958,7 @@ module Aws::NetworkFlowMonitor
1904
1958
  tracer: tracer
1905
1959
  )
1906
1960
  context[:gem_name] = 'aws-sdk-networkflowmonitor'
1907
- context[:gem_version] = '1.14.0'
1961
+ context[:gem_version] = '1.15.0'
1908
1962
  Seahorse::Client::Request.new(handlers, context)
1909
1963
  end
1910
1964
 
@@ -566,6 +566,7 @@ module Aws::NetworkFlowMonitor
566
566
  o.input = Shapes::ShapeRef.new(shape: DeleteMonitorInput)
567
567
  o.output = Shapes::ShapeRef.new(shape: DeleteMonitorOutput)
568
568
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
569
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
569
570
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
570
571
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
571
572
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -41,19 +41,40 @@ module Aws::NetworkFlowMonitor
41
41
  # @return [String]
42
42
  #
43
43
  # @!attribute [rw] local_resources
44
- # The local resources to monitor. A local resource, in a
45
- # bi-directional flow of a workload, is the host where the agent is
46
- # installed. For example, if a workload consists of an interaction
47
- # between a web service and a backend database (for example, Amazon
48
- # Relational Database Service (RDS)), the EC2 instance hosting the web
49
- # service, which also runs the agent, is the local resource.
44
+ # The local resources to monitor. A local resource in a workload is
45
+ # the location of the host, or hosts, where the Network Flow Monitor
46
+ # agent is installed. For example, if a workload consists of an
47
+ # interaction between a web service and a backend database (for
48
+ # example, Amazon Dynamo DB), the subnet with the EC2 instance that
49
+ # hosts the web service, which also runs the agent, is the local
50
+ # resource.
51
+ #
52
+ # Be aware that all local resources must belong to the current Region.
50
53
  # @return [Array<Types::MonitorLocalResource>]
51
54
  #
52
55
  # @!attribute [rw] remote_resources
53
56
  # The remote resources to monitor. A remote resource is the other
54
57
  # endpoint in the bi-directional flow of a workload, with a local
55
- # resource. For example, Amazon Relational Database Service (RDS) can
56
- # be a remote resource.
58
+ # resource. For example, Amazon Dynamo DB can be a remote resource.
59
+ #
60
+ # When you specify remote resources, be aware that specific
61
+ # combinations of resources are allowed and others are not, including
62
+ # the following constraints:
63
+ #
64
+ # * All remote resources that you specify must all belong to a single
65
+ # Region.
66
+ #
67
+ # * If you specify Amazon Web Services services as remote resources,
68
+ # any other remote resources that you specify must be in the current
69
+ # Region.
70
+ #
71
+ # * When you specify a remote resource for another Region, you can
72
+ # only specify the `Region` resource type. You cannot specify a
73
+ # subnet, VPC, or Availability Zone in another Region.
74
+ #
75
+ # * If you leave the `RemoteResources` parameter empty, the monitor
76
+ # will include all network flows that terminate in the current
77
+ # Region.
57
78
  # @return [Array<Types::MonitorRemoteResource>]
58
79
  #
59
80
  # @!attribute [rw] scope_arn
@@ -109,17 +130,15 @@ module Aws::NetworkFlowMonitor
109
130
  # @return [String]
110
131
  #
111
132
  # @!attribute [rw] local_resources
112
- # The local resources to monitor. A local resource, in a
113
- # bi-directional flow of a workload, is the host where the agent is
133
+ # The local resources to monitor. A local resource in a workload is
134
+ # the location of hosts where the Network Flow Monitor agent is
114
135
  # installed.
115
136
  # @return [Array<Types::MonitorLocalResource>]
116
137
  #
117
138
  # @!attribute [rw] remote_resources
118
139
  # The remote resources to monitor. A remote resource is the other
119
- # endpoint in the bi-directional flow of a workload, with a local
120
- # resource. For example, Amazon Relational Database Service (RDS) can
121
- # be a remote resource. The remote resource is identified by its ARN
122
- # or an identifier.
140
+ # endpoint specified for the network flow of a workload, with a local
141
+ # resource. For example, Amazon Dynamo DB can be a remote resource.
123
142
  # @return [Array<Types::MonitorRemoteResource>]
124
143
  #
125
144
  # @!attribute [rw] created_at
@@ -150,8 +169,9 @@ module Aws::NetworkFlowMonitor
150
169
  end
151
170
 
152
171
  # @!attribute [rw] targets
153
- # The targets to define the scope to be monitored. Currently, a target
154
- # is an Amazon Web Services account.
172
+ # The targets to define the scope to be monitored. A target is an
173
+ # array of targetResources, which are currently Region-account pairs,
174
+ # defined by targetResource constructs.
155
175
  # @return [Array<Types::TargetResource>]
156
176
  #
157
177
  # @!attribute [rw] client_token
@@ -283,11 +303,15 @@ module Aws::NetworkFlowMonitor
283
303
  # @return [String]
284
304
  #
285
305
  # @!attribute [rw] local_resources
286
- # The local resources for this monitor.
306
+ # The local resources to monitor. A local resource in a workload is
307
+ # the location of the hosts where the Network Flow Monitor agent is
308
+ # installed.
287
309
  # @return [Array<Types::MonitorLocalResource>]
288
310
  #
289
311
  # @!attribute [rw] remote_resources
290
- # The remote resources for this monitor.
312
+ # The remote resources to monitor. A remote resource is the other
313
+ # endpoint specified for the network flow of a workload, with a local
314
+ # resource. For example, Amazon Dynamo DB can be a remote resource.
291
315
  # @return [Array<Types::MonitorRemoteResource>]
292
316
  #
293
317
  # @!attribute [rw] created_at
@@ -650,7 +674,9 @@ module Aws::NetworkFlowMonitor
650
674
  # @return [String]
651
675
  #
652
676
  # @!attribute [rw] targets
653
- # The targets for a scope
677
+ # The targets to define the scope to be monitored. A target is an
678
+ # array of targetResources, which are currently Region-account pairs,
679
+ # defined by targetResource constructs.
654
680
  # @return [Array<Types::TargetResource>]
655
681
  #
656
682
  # @!attribute [rw] tags
@@ -833,15 +859,19 @@ module Aws::NetworkFlowMonitor
833
859
  end
834
860
 
835
861
  # A local resource is the host where the agent is installed. Local
836
- # resources can be a a subnet, a VPC, or an Availability Zone.
862
+ # resources can be a a subnet, a VPC, an Availability Zone, or an Amazon
863
+ # Web Services service.
837
864
  #
838
865
  # @!attribute [rw] type
839
866
  # The type of the local resource. Valid values are `AWS::EC2::VPC`
840
- # `AWS::AvailabilityZone` or `AWS::EC2::Subnet`.
867
+ # `AWS::AvailabilityZone`, `AWS::EC2::Subnet`, or `AWS::Region`.
841
868
  # @return [String]
842
869
  #
843
870
  # @!attribute [rw] identifier
844
- # The identifier of the local resource, such as an ARN.
871
+ # The identifier of the local resource. For a VPC or subnet, this
872
+ # identifier is the VPC Amazon Resource Name (ARN) or subnet ARN. For
873
+ # an Availability Zone, this identifier is the AZ name, for example,
874
+ # us-west-2b.
845
875
  # @return [String]
846
876
  #
847
877
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkflowmonitor-2023-04-19/MonitorLocalResource AWS API Documentation
@@ -856,15 +886,25 @@ module Aws::NetworkFlowMonitor
856
886
  # A remote resource is the other endpoint in a network flow. That is,
857
887
  # one endpoint is the local resource and the other is the remote
858
888
  # resource. Remote resources can be a a subnet, a VPC, an Availability
859
- # Zone, or an Amazon Web Services service.
889
+ # Zone, an Amazon Web Services service, or an Amazon Web Services
890
+ # Region.
891
+ #
892
+ # When a remote resource is an Amazon Web Services Region, Network Flow
893
+ # Monitor provides network performance measurements up to the edge of
894
+ # the Region that you specify.
860
895
  #
861
896
  # @!attribute [rw] type
862
897
  # The type of the remote resource. Valid values are `AWS::EC2::VPC`
863
- # `AWS::AvailabilityZone`, `AWS::EC2::Subnet`, or `AWS::AWSService`.
898
+ # `AWS::AvailabilityZone`, `AWS::EC2::Subnet`, `AWS::AWSService`, or
899
+ # `AWS::Region`.
864
900
  # @return [String]
865
901
  #
866
902
  # @!attribute [rw] identifier
867
- # The identifier of the remote resource, such as an ARN.
903
+ # The identifier of the remote resource. For a VPC or subnet, this
904
+ # identifier is the VPC Amazon Resource Name (ARN) or subnet ARN. For
905
+ # an Availability Zone, this identifier is the AZ name, for example,
906
+ # us-west-2b. For an Amazon Web Services Region , this identifier is
907
+ # the Region name, for example, us-west-2.
868
908
  # @return [String]
869
909
  #
870
910
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkflowmonitor-2023-04-19/MonitorRemoteResource AWS API Documentation
@@ -876,7 +916,7 @@ module Aws::NetworkFlowMonitor
876
916
  include Aws::Structure
877
917
  end
878
918
 
879
- # A summary of information about a monitor, includ the ARN, the name,
919
+ # A summary of information about a monitor, including the ARN, the name,
880
920
  # and the status.
881
921
  #
882
922
  # @!attribute [rw] monitor_arn
@@ -965,6 +1005,9 @@ module Aws::NetworkFlowMonitor
965
1005
  # * `INTER_AZ`: Top contributor network flows between Availability
966
1006
  # Zones
967
1007
  #
1008
+ # * `INTER_REGION`: Top contributor network flows between Regions (to
1009
+ # the edge of another Region)
1010
+ #
968
1011
  # * `INTER_VPC`: Top contributor network flows between VPCs
969
1012
  #
970
1013
  # * `AWS_SERVICES`: Top contributor network flows to or from Amazon
@@ -1094,10 +1137,10 @@ module Aws::NetworkFlowMonitor
1094
1137
  # and Amazon Web Services Region.
1095
1138
  #
1096
1139
  # @!attribute [rw] scope_id
1097
- # The identifier for the scope that includes the resources you want to
1098
- # get data results for. A scope ID is an internally-generated
1099
- # identifier that includes all the resources for a specific root
1100
- # account.
1140
+ # The identifier for the scope that includes the resources that you
1141
+ # want to get data results for. A scope ID is an internally-generated
1142
+ # identifier that includes all the resources for the accounts in a
1143
+ # scope.
1101
1144
  # @return [String]
1102
1145
  #
1103
1146
  # @!attribute [rw] status
@@ -1143,8 +1186,8 @@ module Aws::NetworkFlowMonitor
1143
1186
  # @return [String]
1144
1187
  #
1145
1188
  # @!attribute [rw] start_time
1146
- # The timestamp that is the date and time beginning of the period that
1147
- # you want to retrieve results for with your query.
1189
+ # The timestamp that is the date and time that is the beginning of the
1190
+ # period that you want to retrieve results for with your query.
1148
1191
  # @return [Time]
1149
1192
  #
1150
1193
  # @!attribute [rw] end_time
@@ -1171,6 +1214,9 @@ module Aws::NetworkFlowMonitor
1171
1214
  # * `INTER_AZ`: Top contributor network flows between Availability
1172
1215
  # Zones
1173
1216
  #
1217
+ # * `INTER_REGION`: Top contributor network flows between Regions (to
1218
+ # the edge of another Region)
1219
+ #
1174
1220
  # * `INTER_VPC`: Top contributor network flows between VPCs
1175
1221
  #
1176
1222
  # * `AMAZON_S3`: Top contributor network flows to or from Amazon S3
@@ -1221,8 +1267,8 @@ module Aws::NetworkFlowMonitor
1221
1267
  # @return [String]
1222
1268
  #
1223
1269
  # @!attribute [rw] start_time
1224
- # The timestamp that is the date and time beginning of the period that
1225
- # you want to retrieve results for with your query.
1270
+ # The timestamp that is the date and time that is the beginning of the
1271
+ # period that you want to retrieve results for with your query.
1226
1272
  # @return [Time]
1227
1273
  #
1228
1274
  # @!attribute [rw] end_time
@@ -1247,6 +1293,9 @@ module Aws::NetworkFlowMonitor
1247
1293
  # * `INTER_AZ`: Top contributor network flows between Availability
1248
1294
  # Zones
1249
1295
  #
1296
+ # * `INTER_REGION`: Top contributor network flows between Regions (to
1297
+ # the edge of another Region)
1298
+ #
1250
1299
  # * `INTER_VPC`: Top contributor network flows between VPCs
1251
1300
  #
1252
1301
  # * `AWS_SERVICES`: Top contributor network flows to or from Amazon
@@ -1290,8 +1339,8 @@ module Aws::NetworkFlowMonitor
1290
1339
  # @return [String]
1291
1340
  #
1292
1341
  # @!attribute [rw] start_time
1293
- # The timestamp that is the date and time beginning of the period that
1294
- # you want to retrieve results for with your query.
1342
+ # The timestamp that is the date and time that is the beginning of the
1343
+ # period that you want to retrieve results for with your query.
1295
1344
  # @return [Time]
1296
1345
  #
1297
1346
  # @!attribute [rw] end_time
@@ -1316,6 +1365,9 @@ module Aws::NetworkFlowMonitor
1316
1365
  # * `INTER_AZ`: Top contributor network flows between Availability
1317
1366
  # Zones
1318
1367
  #
1368
+ # * `INTER_REGION`: Top contributor network flows between Regions (to
1369
+ # the edge of another Region)
1370
+ #
1319
1371
  # * `INTER_VPC`: Top contributor network flows between VPCs
1320
1372
  #
1321
1373
  # * `AWS_SERVICES`: Top contributor network flows to or from Amazon
@@ -1478,17 +1530,18 @@ module Aws::NetworkFlowMonitor
1478
1530
  class Unknown < TargetId; end
1479
1531
  end
1480
1532
 
1481
- # A target identifier is a pair of identifying information for a
1482
- # resource that is included in a target. A target identifier includes
1483
- # the target ID and the target type.
1533
+ # A target identifier is a pair of identifying information for a scope
1534
+ # that is included in a target. A target identifier is made up of a
1535
+ # target ID and a target type. Currently the target ID is always an
1536
+ # account ID and the target type is always ACCOUNT.
1484
1537
  #
1485
1538
  # @!attribute [rw] target_id
1486
- # The identifier for a target.
1539
+ # The identifier for a target, which is currently always an account ID
1540
+ # .
1487
1541
  # @return [Types::TargetId]
1488
1542
  #
1489
1543
  # @!attribute [rw] target_type
1490
- # The type of a target. A target type is currently always `ACCOUNT`
1491
- # because a target is currently a single Amazon Web Services account.
1544
+ # The type of a target. A target type is currently always `ACCOUNT`.
1492
1545
  # @return [String]
1493
1546
  #
1494
1547
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkflowmonitor-2023-04-19/TargetIdentifier AWS API Documentation
@@ -1501,16 +1554,19 @@ module Aws::NetworkFlowMonitor
1501
1554
  end
1502
1555
 
1503
1556
  # A target resource in a scope. The resource is identified by a Region
1504
- # and a target identifier, which includes a target ID and a target type.
1557
+ # and an account, defined by a target identifier. A target identifier is
1558
+ # made up of a target ID (currently always an account ID) and a target
1559
+ # type (currently always `ACCOUNT`).
1505
1560
  #
1506
1561
  # @!attribute [rw] target_identifier
1507
1562
  # A target identifier is a pair of identifying information for a
1508
- # resource that is included in a target. A target identifier includes
1509
- # the target ID and the target type.
1563
+ # scope. A target identifier is made up of a targetID (currently
1564
+ # always an account ID) and a targetType (currently always an
1565
+ # account).
1510
1566
  # @return [Types::TargetIdentifier]
1511
1567
  #
1512
1568
  # @!attribute [rw] region
1513
- # The Amazon Web Services Region where the target resource is located.
1569
+ # The Amazon Web Services Region for the scope.
1514
1570
  # @return [String]
1515
1571
  #
1516
1572
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkflowmonitor-2023-04-19/TargetResource AWS API Documentation
@@ -1546,7 +1602,7 @@ module Aws::NetworkFlowMonitor
1546
1602
  # @return [String]
1547
1603
  #
1548
1604
  # @!attribute [rw] component_arn
1549
- # The Amazon Resource Name (ARN) of a tranversed component.
1605
+ # The Amazon Resource Name (ARN) of a traversed component.
1550
1606
  # @return [String]
1551
1607
  #
1552
1608
  # @!attribute [rw] service_name
@@ -1590,8 +1646,10 @@ module Aws::NetworkFlowMonitor
1590
1646
  # @return [String]
1591
1647
  #
1592
1648
  # @!attribute [rw] local_resources_to_add
1593
- # The local resources to add, as an array of resources with
1594
- # identifiers and types.
1649
+ # Additional local resources to specify network flows for a monitor,
1650
+ # as an array of resources with identifiers and types. A local
1651
+ # resource in a workload is the location of hosts where the Network
1652
+ # Flow Monitor agent is installed.
1595
1653
  # @return [Array<Types::MonitorLocalResource>]
1596
1654
  #
1597
1655
  # @!attribute [rw] local_resources_to_remove
@@ -1600,13 +1658,21 @@ module Aws::NetworkFlowMonitor
1600
1658
  # @return [Array<Types::MonitorLocalResource>]
1601
1659
  #
1602
1660
  # @!attribute [rw] remote_resources_to_add
1603
- # The remove resources to add, as an array of resources with
1661
+ # The remote resources to add, as an array of resources with
1604
1662
  # identifiers and types.
1663
+ #
1664
+ # A remote resource is the other endpoint in the flow of a workload,
1665
+ # with a local resource. For example, Amazon Dynamo DB can be a remote
1666
+ # resource.
1605
1667
  # @return [Array<Types::MonitorRemoteResource>]
1606
1668
  #
1607
1669
  # @!attribute [rw] remote_resources_to_remove
1608
- # The remove resources to remove, as an array of resources with
1670
+ # The remote resources to remove, as an array of resources with
1609
1671
  # identifiers and types.
1672
+ #
1673
+ # A remote resource is the other endpoint specified for the network
1674
+ # flow of a workload, with a local resource. For example, Amazon
1675
+ # Dynamo DB can be a remote resource.
1610
1676
  # @return [Array<Types::MonitorRemoteResource>]
1611
1677
  #
1612
1678
  # @!attribute [rw] client_token
@@ -1654,13 +1720,18 @@ module Aws::NetworkFlowMonitor
1654
1720
  # @return [String]
1655
1721
  #
1656
1722
  # @!attribute [rw] local_resources
1657
- # The local resources updated for a monitor, as an array of resources
1658
- # with identifiers and types.
1723
+ # The local resources to monitor. A local resource in a workload is
1724
+ # the location of hosts where the Network Flow Monitor agent is
1725
+ # installed.
1659
1726
  # @return [Array<Types::MonitorLocalResource>]
1660
1727
  #
1661
1728
  # @!attribute [rw] remote_resources
1662
1729
  # The remote resources updated for a monitor, as an array of resources
1663
1730
  # with identifiers and types.
1731
+ #
1732
+ # A remote resource is the other endpoint specified for the network
1733
+ # flow of a workload, with a local resource. For example, Amazon
1734
+ # Dynamo DB can be a remote resource.
1664
1735
  # @return [Array<Types::MonitorRemoteResource>]
1665
1736
  #
1666
1737
  # @!attribute [rw] created_at
@@ -1815,7 +1886,11 @@ module Aws::NetworkFlowMonitor
1815
1886
  # @return [String]
1816
1887
  #
1817
1888
  # @!attribute [rw] remote_identifier
1818
- # The identifier of a remote resource.
1889
+ # The identifier of a remote resource. For a VPC or subnet, this
1890
+ # identifier is the VPC Amazon Resource Name (ARN) or subnet ARN. For
1891
+ # an Availability Zone, this identifier is the AZ name, for example,
1892
+ # us-west-2b. For an Amazon Web Services Region , this identifier is
1893
+ # the Region name, for example, us-west-2.
1819
1894
  # @return [String]
1820
1895
  #
1821
1896
  # @!attribute [rw] value
@@ -55,7 +55,7 @@ module Aws::NetworkFlowMonitor
55
55
  autoload :EndpointProvider, 'aws-sdk-networkflowmonitor/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-networkflowmonitor/endpoints'
57
57
 
58
- GEM_VERSION = '1.14.0'
58
+ GEM_VERSION = '1.15.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -94,13 +94,13 @@ module Aws
94
94
  monitor_name: ::String,
95
95
  local_resources: Array[
96
96
  {
97
- type: ("AWS::EC2::VPC" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet"),
97
+ type: ("AWS::EC2::VPC" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet" | "AWS::Region"),
98
98
  identifier: ::String
99
99
  },
100
100
  ],
101
101
  ?remote_resources: Array[
102
102
  {
103
- type: ("AWS::EC2::VPC" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet" | "AWS::AWSService"),
103
+ type: ("AWS::EC2::VPC" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet" | "AWS::AWSService" | "AWS::Region"),
104
104
  identifier: ::String
105
105
  },
106
106
  ],
@@ -306,7 +306,7 @@ module Aws
306
306
  start_time: ::Time,
307
307
  end_time: ::Time,
308
308
  metric_name: ("ROUND_TRIP_TIME" | "TIMEOUTS" | "RETRANSMISSIONS" | "DATA_TRANSFERRED"),
309
- destination_category: ("INTRA_AZ" | "INTER_AZ" | "INTER_VPC" | "UNCLASSIFIED" | "AMAZON_S3" | "AMAZON_DYNAMODB"),
309
+ destination_category: ("INTRA_AZ" | "INTER_AZ" | "INTER_VPC" | "UNCLASSIFIED" | "AMAZON_S3" | "AMAZON_DYNAMODB" | "INTER_REGION"),
310
310
  ?limit: ::Integer
311
311
  ) -> _StartQueryMonitorTopContributorsResponseSuccess
312
312
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartQueryMonitorTopContributorsResponseSuccess
@@ -321,7 +321,7 @@ module Aws
321
321
  start_time: ::Time,
322
322
  end_time: ::Time,
323
323
  metric_name: ("TIMEOUTS" | "RETRANSMISSIONS" | "DATA_TRANSFERRED"),
324
- destination_category: ("INTRA_AZ" | "INTER_AZ" | "INTER_VPC" | "UNCLASSIFIED" | "AMAZON_S3" | "AMAZON_DYNAMODB"),
324
+ destination_category: ("INTRA_AZ" | "INTER_AZ" | "INTER_VPC" | "UNCLASSIFIED" | "AMAZON_S3" | "AMAZON_DYNAMODB" | "INTER_REGION"),
325
325
  ?limit: ::Integer
326
326
  ) -> _StartQueryWorkloadInsightsTopContributorsResponseSuccess
327
327
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartQueryWorkloadInsightsTopContributorsResponseSuccess
@@ -336,7 +336,7 @@ module Aws
336
336
  start_time: ::Time,
337
337
  end_time: ::Time,
338
338
  metric_name: ("TIMEOUTS" | "RETRANSMISSIONS" | "DATA_TRANSFERRED"),
339
- destination_category: ("INTRA_AZ" | "INTER_AZ" | "INTER_VPC" | "UNCLASSIFIED" | "AMAZON_S3" | "AMAZON_DYNAMODB")
339
+ destination_category: ("INTRA_AZ" | "INTER_AZ" | "INTER_VPC" | "UNCLASSIFIED" | "AMAZON_S3" | "AMAZON_DYNAMODB" | "INTER_REGION")
340
340
  ) -> _StartQueryWorkloadInsightsTopContributorsDataResponseSuccess
341
341
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartQueryWorkloadInsightsTopContributorsDataResponseSuccess
342
342
 
@@ -406,25 +406,25 @@ module Aws
406
406
  monitor_name: ::String,
407
407
  ?local_resources_to_add: Array[
408
408
  {
409
- type: ("AWS::EC2::VPC" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet"),
409
+ type: ("AWS::EC2::VPC" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet" | "AWS::Region"),
410
410
  identifier: ::String
411
411
  },
412
412
  ],
413
413
  ?local_resources_to_remove: Array[
414
414
  {
415
- type: ("AWS::EC2::VPC" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet"),
415
+ type: ("AWS::EC2::VPC" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet" | "AWS::Region"),
416
416
  identifier: ::String
417
417
  },
418
418
  ],
419
419
  ?remote_resources_to_add: Array[
420
420
  {
421
- type: ("AWS::EC2::VPC" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet" | "AWS::AWSService"),
421
+ type: ("AWS::EC2::VPC" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet" | "AWS::AWSService" | "AWS::Region"),
422
422
  identifier: ::String
423
423
  },
424
424
  ],
425
425
  ?remote_resources_to_remove: Array[
426
426
  {
427
- type: ("AWS::EC2::VPC" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet" | "AWS::AWSService"),
427
+ type: ("AWS::EC2::VPC" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet" | "AWS::AWSService" | "AWS::Region"),
428
428
  identifier: ::String
429
429
  },
430
430
  ],
data/sig/types.rbs CHANGED
@@ -230,13 +230,13 @@ module Aws::NetworkFlowMonitor
230
230
  end
231
231
 
232
232
  class MonitorLocalResource
233
- attr_accessor type: ("AWS::EC2::VPC" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet")
233
+ attr_accessor type: ("AWS::EC2::VPC" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet" | "AWS::Region")
234
234
  attr_accessor identifier: ::String
235
235
  SENSITIVE: []
236
236
  end
237
237
 
238
238
  class MonitorRemoteResource
239
- attr_accessor type: ("AWS::EC2::VPC" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet" | "AWS::AWSService")
239
+ attr_accessor type: ("AWS::EC2::VPC" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet" | "AWS::AWSService" | "AWS::Region")
240
240
  attr_accessor identifier: ::String
241
241
  SENSITIVE: []
242
242
  end
@@ -257,7 +257,7 @@ module Aws::NetworkFlowMonitor
257
257
  attr_accessor local_az: ::String
258
258
  attr_accessor local_subnet_id: ::String
259
259
  attr_accessor target_port: ::Integer
260
- attr_accessor destination_category: ("INTRA_AZ" | "INTER_AZ" | "INTER_VPC" | "UNCLASSIFIED" | "AMAZON_S3" | "AMAZON_DYNAMODB")
260
+ attr_accessor destination_category: ("INTRA_AZ" | "INTER_AZ" | "INTER_VPC" | "UNCLASSIFIED" | "AMAZON_S3" | "AMAZON_DYNAMODB" | "INTER_REGION")
261
261
  attr_accessor remote_vpc_id: ::String
262
262
  attr_accessor remote_region: ::String
263
263
  attr_accessor remote_az: ::String
@@ -299,7 +299,7 @@ module Aws::NetworkFlowMonitor
299
299
  attr_accessor start_time: ::Time
300
300
  attr_accessor end_time: ::Time
301
301
  attr_accessor metric_name: ("ROUND_TRIP_TIME" | "TIMEOUTS" | "RETRANSMISSIONS" | "DATA_TRANSFERRED")
302
- attr_accessor destination_category: ("INTRA_AZ" | "INTER_AZ" | "INTER_VPC" | "UNCLASSIFIED" | "AMAZON_S3" | "AMAZON_DYNAMODB")
302
+ attr_accessor destination_category: ("INTRA_AZ" | "INTER_AZ" | "INTER_VPC" | "UNCLASSIFIED" | "AMAZON_S3" | "AMAZON_DYNAMODB" | "INTER_REGION")
303
303
  attr_accessor limit: ::Integer
304
304
  SENSITIVE: []
305
305
  end
@@ -314,7 +314,7 @@ module Aws::NetworkFlowMonitor
314
314
  attr_accessor start_time: ::Time
315
315
  attr_accessor end_time: ::Time
316
316
  attr_accessor metric_name: ("TIMEOUTS" | "RETRANSMISSIONS" | "DATA_TRANSFERRED")
317
- attr_accessor destination_category: ("INTRA_AZ" | "INTER_AZ" | "INTER_VPC" | "UNCLASSIFIED" | "AMAZON_S3" | "AMAZON_DYNAMODB")
317
+ attr_accessor destination_category: ("INTRA_AZ" | "INTER_AZ" | "INTER_VPC" | "UNCLASSIFIED" | "AMAZON_S3" | "AMAZON_DYNAMODB" | "INTER_REGION")
318
318
  SENSITIVE: []
319
319
  end
320
320
 
@@ -328,7 +328,7 @@ module Aws::NetworkFlowMonitor
328
328
  attr_accessor start_time: ::Time
329
329
  attr_accessor end_time: ::Time
330
330
  attr_accessor metric_name: ("TIMEOUTS" | "RETRANSMISSIONS" | "DATA_TRANSFERRED")
331
- attr_accessor destination_category: ("INTRA_AZ" | "INTER_AZ" | "INTER_VPC" | "UNCLASSIFIED" | "AMAZON_S3" | "AMAZON_DYNAMODB")
331
+ attr_accessor destination_category: ("INTRA_AZ" | "INTER_AZ" | "INTER_VPC" | "UNCLASSIFIED" | "AMAZON_S3" | "AMAZON_DYNAMODB" | "INTER_REGION")
332
332
  attr_accessor limit: ::Integer
333
333
  SENSITIVE: []
334
334
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-networkflowmonitor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.15.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services