aws-sdk 2.1008.0 → 2.1012.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.
Files changed (43) hide show
  1. package/CHANGELOG.md +21 -1
  2. package/README.md +1 -1
  3. package/apis/appflow-2020-08-23.min.json +43 -37
  4. package/apis/chime-sdk-messaging-2021-05-15.min.json +601 -88
  5. package/apis/chime-sdk-messaging-2021-05-15.paginators.json +10 -0
  6. package/apis/dataexchange-2017-07-25.min.json +65 -13
  7. package/apis/directconnect-2012-10-25.min.json +119 -35
  8. package/apis/glue-2017-03-31.min.json +341 -339
  9. package/apis/ivs-2020-07-14.min.json +127 -100
  10. package/apis/ivs-2020-07-14.paginators.json +4 -14
  11. package/apis/mediaconvert-2017-08-29.min.json +137 -134
  12. package/apis/mediapackage-2017-10-12.min.json +4 -0
  13. package/apis/mediapackage-vod-2018-11-07.min.json +4 -0
  14. package/apis/metadata.json +3 -0
  15. package/apis/panorama-2019-07-24.examples.json +5 -0
  16. package/apis/panorama-2019-07-24.min.json +1622 -0
  17. package/apis/panorama-2019-07-24.paginators.json +49 -0
  18. package/apis/quicksight-2018-04-01.min.json +237 -159
  19. package/apis/securityhub-2018-10-26.min.json +282 -137
  20. package/apis/securityhub-2018-10-26.paginators.json +6 -0
  21. package/clients/all.d.ts +1 -0
  22. package/clients/all.js +2 -1
  23. package/clients/appflow.d.ts +8 -0
  24. package/clients/chimesdkmessaging.d.ts +475 -2
  25. package/clients/dataexchange.d.ts +110 -20
  26. package/clients/directconnect.d.ts +186 -49
  27. package/clients/efs.d.ts +10 -10
  28. package/clients/glue.d.ts +11 -2
  29. package/clients/ivs.d.ts +158 -133
  30. package/clients/mediaconvert.d.ts +57 -58
  31. package/clients/mediapackage.d.ts +4 -0
  32. package/clients/mediapackagevod.d.ts +4 -0
  33. package/clients/panorama.d.ts +1926 -0
  34. package/clients/panorama.js +18 -0
  35. package/clients/quicksight.d.ts +158 -75
  36. package/clients/securityhub.d.ts +161 -2
  37. package/dist/aws-sdk-core-react-native.js +2 -2
  38. package/dist/aws-sdk-react-native.js +55 -18
  39. package/dist/aws-sdk.js +125 -38
  40. package/dist/aws-sdk.min.js +68 -68
  41. package/lib/config_service_placeholders.d.ts +2 -0
  42. package/lib/core.js +1 -1
  43. package/package.json +1 -1
@@ -48,6 +48,12 @@
48
48
  "limit_key": "MaxResults",
49
49
  "result_key": "ProductSubscriptions"
50
50
  },
51
+ "ListFindingAggregators": {
52
+ "input_token": "NextToken",
53
+ "output_token": "NextToken",
54
+ "limit_key": "MaxResults",
55
+ "result_key": "FindingAggregators"
56
+ },
51
57
  "ListInvitations": {
52
58
  "input_token": "NextToken",
53
59
  "output_token": "NextToken",
package/clients/all.d.ts CHANGED
@@ -283,3 +283,4 @@ export import Wisdom = require('./wisdom');
283
283
  export import Account = require('./account');
284
284
  export import CloudControl = require('./cloudcontrol');
285
285
  export import Grafana = require('./grafana');
286
+ export import Panorama = require('./panorama');
package/clients/all.js CHANGED
@@ -284,5 +284,6 @@ module.exports = {
284
284
  Wisdom: require('./wisdom'),
285
285
  Account: require('./account'),
286
286
  CloudControl: require('./cloudcontrol'),
287
- Grafana: require('./grafana')
287
+ Grafana: require('./grafana'),
288
+ Panorama: require('./panorama')
288
289
  };
@@ -1561,6 +1561,13 @@ declare namespace Appflow {
1561
1561
  bucketPrefix?: BucketPrefix;
1562
1562
  s3OutputFormatConfig?: S3OutputFormatConfig;
1563
1563
  }
1564
+ export type S3InputFileType = "CSV"|"JSON"|string;
1565
+ export interface S3InputFormatConfig {
1566
+ /**
1567
+ * The file type that Amazon AppFlow gets from your Amazon S3 bucket.
1568
+ */
1569
+ s3InputFileType?: S3InputFileType;
1570
+ }
1564
1571
  export interface S3Metadata {
1565
1572
  }
1566
1573
  export interface S3OutputFormatConfig {
@@ -1583,6 +1590,7 @@ declare namespace Appflow {
1583
1590
  * The object key for the Amazon S3 bucket in which the source files are stored.
1584
1591
  */
1585
1592
  bucketPrefix?: BucketPrefix;
1593
+ s3InputFormatConfig?: S3InputFormatConfig;
1586
1594
  }
1587
1595
  export type SAPODataConnectorOperator = "PROJECTION"|"LESS_THAN"|"CONTAINS"|"GREATER_THAN"|"BETWEEN"|"LESS_THAN_OR_EQUAL_TO"|"GREATER_THAN_OR_EQUAL_TO"|"EQUAL_TO"|"NOT_EQUAL_TO"|"ADDITION"|"MULTIPLICATION"|"DIVISION"|"SUBTRACTION"|"MASK_ALL"|"MASK_FIRST_N"|"MASK_LAST_N"|"VALIDATE_NON_NULL"|"VALIDATE_NON_ZERO"|"VALIDATE_NON_NEGATIVE"|"VALIDATE_NUMERIC"|"NO_OP"|string;
1588
1596
  export interface SAPODataConnectorProfileCredentials {