cdk-lambda-subminute 2.0.333 → 2.0.334

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.
Files changed (28) hide show
  1. package/.jsii +16 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/README.md +1 -1
  4. package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +64 -18
  5. package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +24 -3
  6. package/node_modules/aws-sdk/apis/mediaconnect-2018-11-14.min.json +151 -20
  7. package/node_modules/aws-sdk/apis/metadata.json +3 -0
  8. package/node_modules/aws-sdk/apis/networkmonitor-2023-08-01.examples.json +5 -0
  9. package/node_modules/aws-sdk/apis/networkmonitor-2023-08-01.min.json +617 -0
  10. package/node_modules/aws-sdk/apis/networkmonitor-2023-08-01.paginators.json +10 -0
  11. package/node_modules/aws-sdk/apis/networkmonitor-2023-08-01.waiters2.json +5 -0
  12. package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +121 -121
  13. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  14. package/node_modules/aws-sdk/clients/all.js +2 -1
  15. package/node_modules/aws-sdk/clients/glue.d.ts +84 -2
  16. package/node_modules/aws-sdk/clients/lakeformation.d.ts +42 -1
  17. package/node_modules/aws-sdk/clients/mediaconnect.d.ts +101 -0
  18. package/node_modules/aws-sdk/clients/networkmonitor.d.ts +696 -0
  19. package/node_modules/aws-sdk/clients/networkmonitor.js +19 -0
  20. package/node_modules/aws-sdk/clients/omics.d.ts +3 -3
  21. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  22. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +51 -7
  23. package/node_modules/aws-sdk/dist/aws-sdk.js +6 -3
  24. package/node_modules/aws-sdk/dist/aws-sdk.min.js +38 -38
  25. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  26. package/node_modules/aws-sdk/lib/core.js +1 -1
  27. package/node_modules/aws-sdk/package.json +1 -1
  28. package/package.json +2 -2
@@ -592,6 +592,137 @@
592
592
  }
593
593
  }
594
594
  },
595
+ "DescribeFlowSourceMetadata": {
596
+ "http": {
597
+ "method": "GET",
598
+ "requestUri": "/v1/flows/{flowArn}/source-metadata",
599
+ "responseCode": 200
600
+ },
601
+ "input": {
602
+ "type": "structure",
603
+ "members": {
604
+ "FlowArn": {
605
+ "location": "uri",
606
+ "locationName": "flowArn"
607
+ }
608
+ },
609
+ "required": [
610
+ "FlowArn"
611
+ ]
612
+ },
613
+ "output": {
614
+ "type": "structure",
615
+ "members": {
616
+ "FlowArn": {
617
+ "locationName": "flowArn"
618
+ },
619
+ "Messages": {
620
+ "shape": "S2q",
621
+ "locationName": "messages"
622
+ },
623
+ "Timestamp": {
624
+ "locationName": "timestamp",
625
+ "type": "timestamp",
626
+ "timestampFormat": "iso8601"
627
+ },
628
+ "TransportMediaInfo": {
629
+ "locationName": "transportMediaInfo",
630
+ "type": "structure",
631
+ "members": {
632
+ "Programs": {
633
+ "locationName": "programs",
634
+ "type": "list",
635
+ "member": {
636
+ "type": "structure",
637
+ "members": {
638
+ "PcrPid": {
639
+ "locationName": "pcrPid",
640
+ "type": "integer"
641
+ },
642
+ "ProgramName": {
643
+ "locationName": "programName"
644
+ },
645
+ "ProgramNumber": {
646
+ "locationName": "programNumber",
647
+ "type": "integer"
648
+ },
649
+ "ProgramPid": {
650
+ "locationName": "programPid",
651
+ "type": "integer"
652
+ },
653
+ "Streams": {
654
+ "locationName": "streams",
655
+ "type": "list",
656
+ "member": {
657
+ "type": "structure",
658
+ "members": {
659
+ "Channels": {
660
+ "locationName": "channels",
661
+ "type": "integer"
662
+ },
663
+ "Codec": {
664
+ "locationName": "codec"
665
+ },
666
+ "FrameRate": {
667
+ "locationName": "frameRate"
668
+ },
669
+ "FrameResolution": {
670
+ "locationName": "frameResolution",
671
+ "type": "structure",
672
+ "members": {
673
+ "FrameHeight": {
674
+ "locationName": "frameHeight",
675
+ "type": "integer"
676
+ },
677
+ "FrameWidth": {
678
+ "locationName": "frameWidth",
679
+ "type": "integer"
680
+ }
681
+ },
682
+ "required": [
683
+ "FrameWidth",
684
+ "FrameHeight"
685
+ ]
686
+ },
687
+ "Pid": {
688
+ "locationName": "pid",
689
+ "type": "integer"
690
+ },
691
+ "SampleRate": {
692
+ "locationName": "sampleRate",
693
+ "type": "integer"
694
+ },
695
+ "SampleSize": {
696
+ "locationName": "sampleSize",
697
+ "type": "integer"
698
+ },
699
+ "StreamType": {
700
+ "locationName": "streamType"
701
+ }
702
+ },
703
+ "required": [
704
+ "StreamType",
705
+ "Pid"
706
+ ]
707
+ }
708
+ }
709
+ },
710
+ "required": [
711
+ "ProgramPid",
712
+ "PcrPid",
713
+ "ProgramNumber",
714
+ "Streams"
715
+ ]
716
+ }
717
+ }
718
+ },
719
+ "required": [
720
+ "Programs"
721
+ ]
722
+ }
723
+ }
724
+ }
725
+ },
595
726
  "DescribeGateway": {
596
727
  "http": {
597
728
  "method": "GET",
@@ -707,7 +838,7 @@
707
838
  "type": "structure",
708
839
  "members": {
709
840
  "Offering": {
710
- "shape": "S41",
841
+ "shape": "S4a",
711
842
  "locationName": "offering"
712
843
  }
713
844
  }
@@ -735,7 +866,7 @@
735
866
  "type": "structure",
736
867
  "members": {
737
868
  "Reservation": {
738
- "shape": "S48",
869
+ "shape": "S4h",
739
870
  "locationName": "reservation"
740
871
  }
741
872
  }
@@ -1101,7 +1232,7 @@
1101
1232
  "locationName": "offerings",
1102
1233
  "type": "list",
1103
1234
  "member": {
1104
- "shape": "S41"
1235
+ "shape": "S4a"
1105
1236
  }
1106
1237
  }
1107
1238
  }
@@ -1137,7 +1268,7 @@
1137
1268
  "locationName": "reservations",
1138
1269
  "type": "list",
1139
1270
  "member": {
1140
- "shape": "S48"
1271
+ "shape": "S4h"
1141
1272
  }
1142
1273
  }
1143
1274
  }
@@ -1165,7 +1296,7 @@
1165
1296
  "type": "structure",
1166
1297
  "members": {
1167
1298
  "Tags": {
1168
- "shape": "S56",
1299
+ "shape": "S5f",
1169
1300
  "locationName": "tags"
1170
1301
  }
1171
1302
  }
@@ -1200,7 +1331,7 @@
1200
1331
  "type": "structure",
1201
1332
  "members": {
1202
1333
  "Reservation": {
1203
- "shape": "S48",
1334
+ "shape": "S4h",
1204
1335
  "locationName": "reservation"
1205
1336
  }
1206
1337
  }
@@ -1526,7 +1657,7 @@
1526
1657
  "locationName": "resourceArn"
1527
1658
  },
1528
1659
  "Tags": {
1529
- "shape": "S56",
1660
+ "shape": "S5f",
1530
1661
  "locationName": "tags"
1531
1662
  }
1532
1663
  },
@@ -1599,7 +1730,7 @@
1599
1730
  }
1600
1731
  },
1601
1732
  "SourceFailoverConfig": {
1602
- "shape": "S5w",
1733
+ "shape": "S65",
1603
1734
  "locationName": "sourceFailoverConfig"
1604
1735
  }
1605
1736
  },
@@ -1792,7 +1923,7 @@
1792
1923
  "locationName": "flowArn"
1793
1924
  },
1794
1925
  "SourceFailoverConfig": {
1795
- "shape": "S5w",
1926
+ "shape": "S65",
1796
1927
  "locationName": "sourceFailoverConfig"
1797
1928
  },
1798
1929
  "Maintenance": {
@@ -1838,7 +1969,7 @@
1838
1969
  "locationName": "description"
1839
1970
  },
1840
1971
  "Encryption": {
1841
- "shape": "S6c",
1972
+ "shape": "S6l",
1842
1973
  "locationName": "encryption"
1843
1974
  },
1844
1975
  "EntitlementArn": {
@@ -1948,7 +2079,7 @@
1948
2079
  "locationName": "destination"
1949
2080
  },
1950
2081
  "Encryption": {
1951
- "shape": "S6c",
2082
+ "shape": "S6l",
1952
2083
  "locationName": "encryption"
1953
2084
  },
1954
2085
  "FlowArn": {
@@ -2028,7 +2159,7 @@
2028
2159
  "type": "structure",
2029
2160
  "members": {
2030
2161
  "Decryption": {
2031
- "shape": "S6c",
2162
+ "shape": "S6l",
2032
2163
  "locationName": "decryption"
2033
2164
  },
2034
2165
  "Description": {
@@ -3562,7 +3693,7 @@
3562
3693
  "Name"
3563
3694
  ]
3564
3695
  },
3565
- "S41": {
3696
+ "S4a": {
3566
3697
  "type": "structure",
3567
3698
  "members": {
3568
3699
  "CurrencyCode": {
@@ -3588,7 +3719,7 @@
3588
3719
  "locationName": "priceUnits"
3589
3720
  },
3590
3721
  "ResourceSpecification": {
3591
- "shape": "S44",
3722
+ "shape": "S4d",
3592
3723
  "locationName": "resourceSpecification"
3593
3724
  }
3594
3725
  },
@@ -3603,7 +3734,7 @@
3603
3734
  "PriceUnits"
3604
3735
  ]
3605
3736
  },
3606
- "S44": {
3737
+ "S4d": {
3607
3738
  "type": "structure",
3608
3739
  "members": {
3609
3740
  "ReservedBitrate": {
@@ -3618,7 +3749,7 @@
3618
3749
  "ResourceType"
3619
3750
  ]
3620
3751
  },
3621
- "S48": {
3752
+ "S4h": {
3622
3753
  "type": "structure",
3623
3754
  "members": {
3624
3755
  "CurrencyCode": {
@@ -3656,7 +3787,7 @@
3656
3787
  "locationName": "reservationState"
3657
3788
  },
3658
3789
  "ResourceSpecification": {
3659
- "shape": "S44",
3790
+ "shape": "S4d",
3660
3791
  "locationName": "resourceSpecification"
3661
3792
  },
3662
3793
  "Start": {
@@ -3679,12 +3810,12 @@
3679
3810
  "PriceUnits"
3680
3811
  ]
3681
3812
  },
3682
- "S56": {
3813
+ "S5f": {
3683
3814
  "type": "map",
3684
3815
  "key": {},
3685
3816
  "value": {}
3686
3817
  },
3687
- "S5w": {
3818
+ "S65": {
3688
3819
  "type": "structure",
3689
3820
  "members": {
3690
3821
  "FailoverMode": {
@@ -3703,7 +3834,7 @@
3703
3834
  }
3704
3835
  }
3705
3836
  },
3706
- "S6c": {
3837
+ "S6l": {
3707
3838
  "type": "structure",
3708
3839
  "members": {
3709
3840
  "Algorithm": {
@@ -1408,5 +1408,8 @@
1408
1408
  "neptunegraph": {
1409
1409
  "prefix": "neptune-graph",
1410
1410
  "name": "NeptuneGraph"
1411
+ },
1412
+ "networkmonitor": {
1413
+ "name": "NetworkMonitor"
1411
1414
  }
1412
1415
  }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }