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
@@ -230,6 +230,9 @@ declare class DataExchange extends Service {
230
230
  }
231
231
  declare namespace DataExchange {
232
232
  export interface Action {
233
+ /**
234
+ * Details for the export revision to Amazon S3 action.
235
+ */
233
236
  ExportRevisionToS3?: AutoExportRevisionToS3RequestDetails;
234
237
  }
235
238
  export type Arn = string;
@@ -248,7 +251,14 @@ declare namespace DataExchange {
248
251
  Key?: __string;
249
252
  }
250
253
  export interface AssetDetails {
254
+ /**
255
+ * The S3 object that is the asset.
256
+ */
251
257
  S3SnapshotAsset?: S3SnapshotAsset;
258
+ /**
259
+ * The Amazon Redshift datashare that is the asset.
260
+ */
261
+ RedshiftDataShareAsset?: RedshiftDataShareAsset;
252
262
  }
253
263
  export interface AssetEntry {
254
264
  /**
@@ -256,11 +266,11 @@ declare namespace DataExchange {
256
266
  */
257
267
  Arn: Arn;
258
268
  /**
259
- * Information about the asset, including its size.
269
+ * Information about the asset.
260
270
  */
261
271
  AssetDetails: AssetDetails;
262
272
  /**
263
- * The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.
273
+ * The type of asset that is added to a data set.
264
274
  */
265
275
  AssetType: AssetType;
266
276
  /**
@@ -303,7 +313,7 @@ declare namespace DataExchange {
303
313
  */
304
314
  Key: __string;
305
315
  }
306
- export type AssetType = "S3_SNAPSHOT"|string;
316
+ export type AssetType = "S3_SNAPSHOT"|"REDSHIFT_DATA_SHARE"|string;
307
317
  export interface AutoExportRevisionDestinationEntry {
308
318
  /**
309
319
  * The S3 bucket that is the destination for the event action.
@@ -315,7 +325,13 @@ declare namespace DataExchange {
315
325
  KeyPattern?: __string;
316
326
  }
317
327
  export interface AutoExportRevisionToS3RequestDetails {
328
+ /**
329
+ * Encryption configuration for the auto export job.
330
+ */
318
331
  Encryption?: ExportServerSideEncryption;
332
+ /**
333
+ * A revision destination is the Amazon S3 bucket folder destination to where the export will be sent.
334
+ */
319
335
  RevisionDestination: AutoExportRevisionDestinationEntry;
320
336
  }
321
337
  export interface CancelJobRequest {
@@ -327,7 +343,7 @@ declare namespace DataExchange {
327
343
  export type Code = "ACCESS_DENIED_EXCEPTION"|"INTERNAL_SERVER_EXCEPTION"|"MALWARE_DETECTED"|"RESOURCE_NOT_FOUND_EXCEPTION"|"SERVICE_QUOTA_EXCEEDED_EXCEPTION"|"VALIDATION_EXCEPTION"|"MALWARE_SCAN_ENCRYPTED_FILE"|string;
328
344
  export interface CreateDataSetRequest {
329
345
  /**
330
- * The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.
346
+ * The type of asset that is added to a data set.
331
347
  */
332
348
  AssetType: AssetType;
333
349
  /**
@@ -349,7 +365,7 @@ declare namespace DataExchange {
349
365
  */
350
366
  Arn?: Arn;
351
367
  /**
352
- * The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.
368
+ * The type of asset that is added to a data set.
353
369
  */
354
370
  AssetType?: AssetType;
355
371
  /**
@@ -485,7 +501,7 @@ declare namespace DataExchange {
485
501
  }
486
502
  export interface CreateRevisionResponse {
487
503
  /**
488
- * The ARN for the revision
504
+ * The ARN for the revision.
489
505
  */
490
506
  Arn?: Arn;
491
507
  /**
@@ -527,7 +543,7 @@ declare namespace DataExchange {
527
543
  */
528
544
  Arn: Arn;
529
545
  /**
530
- * The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.
546
+ * The type of asset that is added to a data set.
531
547
  */
532
548
  AssetType: AssetType;
533
549
  /**
@@ -601,10 +617,19 @@ declare namespace DataExchange {
601
617
  }
602
618
  export type Description = string;
603
619
  export interface Details {
620
+ /**
621
+ * Information about the job error.
622
+ */
604
623
  ImportAssetFromSignedUrlJobErrorDetails?: ImportAssetFromSignedUrlJobErrorDetails;
624
+ /**
625
+ * Information about the job error.
626
+ */
605
627
  ImportAssetsFromS3JobErrorDetails?: ListOfAssetSourceEntry;
606
628
  }
607
629
  export interface Event {
630
+ /**
631
+ * What occurs to start the revision publish action.
632
+ */
608
633
  RevisionPublished?: RevisionPublished;
609
634
  }
610
635
  export interface EventActionEntry {
@@ -613,7 +638,7 @@ declare namespace DataExchange {
613
638
  */
614
639
  Action: Action;
615
640
  /**
616
- * The ARN for the event action.
641
+ * The Amazon Resource Name (ARN) for the event action.
617
642
  */
618
643
  Arn: Arn;
619
644
  /**
@@ -732,6 +757,10 @@ declare namespace DataExchange {
732
757
  * The destination in Amazon S3 where the revision is exported.
733
758
  */
734
759
  RevisionDestinations: ListOfRevisionDestinationEntry;
760
+ /**
761
+ * The Amazon Resource Name (ARN) of the event action.
762
+ */
763
+ EventActionArn?: __string;
735
764
  }
736
765
  export interface ExportServerSideEncryption {
737
766
  /**
@@ -763,11 +792,11 @@ declare namespace DataExchange {
763
792
  */
764
793
  Arn?: Arn;
765
794
  /**
766
- * Information about the asset, including its size.
795
+ * Information about the asset.
767
796
  */
768
797
  AssetDetails?: AssetDetails;
769
798
  /**
770
- * The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.
799
+ * The type of asset that is added to a data set.
771
800
  */
772
801
  AssetType?: AssetType;
773
802
  /**
@@ -783,7 +812,7 @@ declare namespace DataExchange {
783
812
  */
784
813
  Id?: Id;
785
814
  /**
786
- * The name of the asset When importing from Amazon S3, the S3 object key is used as the asset name. When exporting to Amazon S3, the asset name is used as default target S3 object key.
815
+ * The name of the asset. When importing from Amazon S3, the S3 object key is used as the asset name. When exporting to Amazon S3, the asset name is used as default target S3 object key.
787
816
  */
788
817
  Name?: AssetName;
789
818
  /**
@@ -811,7 +840,7 @@ declare namespace DataExchange {
811
840
  */
812
841
  Arn?: Arn;
813
842
  /**
814
- * The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.
843
+ * The type of asset that is added to a data set.
815
844
  */
816
845
  AssetType?: AssetType;
817
846
  /**
@@ -935,7 +964,7 @@ declare namespace DataExchange {
935
964
  }
936
965
  export interface GetRevisionResponse {
937
966
  /**
938
- * The ARN for the revision
967
+ * The ARN for the revision.
939
968
  */
940
969
  Arn?: Arn;
941
970
  /**
@@ -973,6 +1002,9 @@ declare namespace DataExchange {
973
1002
  }
974
1003
  export type Id = string;
975
1004
  export interface ImportAssetFromSignedUrlJobErrorDetails {
1005
+ /**
1006
+ * Information about the job error.
1007
+ */
976
1008
  AssetName: AssetName;
977
1009
  }
978
1010
  export interface ImportAssetFromSignedUrlRequestDetails {
@@ -995,7 +1027,7 @@ declare namespace DataExchange {
995
1027
  }
996
1028
  export interface ImportAssetFromSignedUrlResponseDetails {
997
1029
  /**
998
- * The name for the asset associated with this import response.
1030
+ * The name for the asset associated with this import job.
999
1031
  */
1000
1032
  AssetName: AssetName;
1001
1033
  /**
@@ -1019,6 +1051,34 @@ declare namespace DataExchange {
1019
1051
  */
1020
1052
  SignedUrlExpiresAt?: Timestamp;
1021
1053
  }
1054
+ export interface ImportAssetsFromRedshiftDataSharesRequestDetails {
1055
+ /**
1056
+ * A list of Amazon Redshift datashare assets.
1057
+ */
1058
+ AssetSources: ListOfRedshiftDataShareAssetSourceEntry;
1059
+ /**
1060
+ * The unique identifier for the data set associated with this import job.
1061
+ */
1062
+ DataSetId: Id;
1063
+ /**
1064
+ * The unique identifier for the revision associated with this import job.
1065
+ */
1066
+ RevisionId: Id;
1067
+ }
1068
+ export interface ImportAssetsFromRedshiftDataSharesResponseDetails {
1069
+ /**
1070
+ * A list of Amazon Redshift datashare asset sources.
1071
+ */
1072
+ AssetSources: ListOfRedshiftDataShareAssetSourceEntry;
1073
+ /**
1074
+ * The unique identifier for the data set associated with this import job.
1075
+ */
1076
+ DataSetId: Id;
1077
+ /**
1078
+ * The unique identifier for the revision associated with this import job.
1079
+ */
1080
+ RevisionId: Id;
1081
+ }
1022
1082
  export interface ImportAssetsFromS3RequestDetails {
1023
1083
  /**
1024
1084
  * Is a list of S3 bucket and object key pairs.
@@ -1086,6 +1146,9 @@ declare namespace DataExchange {
1086
1146
  * The code for the job error.
1087
1147
  */
1088
1148
  Code: Code;
1149
+ /**
1150
+ * The details about the job error.
1151
+ */
1089
1152
  Details?: Details;
1090
1153
  /**
1091
1154
  * The name of the limit that was reached.
@@ -1108,7 +1171,7 @@ declare namespace DataExchange {
1108
1171
  */
1109
1172
  ResourceType?: JobErrorResourceTypes;
1110
1173
  }
1111
- export type JobErrorLimitName = "Assets per revision"|"Asset size in GB"|string;
1174
+ export type JobErrorLimitName = "Assets per revision"|"Asset size in GB"|"Amazon Redshift datashare assets per revision"|string;
1112
1175
  export type JobErrorResourceTypes = "REVISION"|"ASSET"|"DATA_SET"|string;
1113
1176
  export interface ListDataSetRevisionsRequest {
1114
1177
  /**
@@ -1212,6 +1275,7 @@ declare namespace DataExchange {
1212
1275
  }
1213
1276
  export type ListOfAssetDestinationEntry = AssetDestinationEntry[];
1214
1277
  export type ListOfAssetSourceEntry = AssetSourceEntry[];
1278
+ export type ListOfRedshiftDataShareAssetSourceEntry = RedshiftDataShareAssetSourceEntry[];
1215
1279
  export type ListOfRevisionDestinationEntry = RevisionDestinationEntry[];
1216
1280
  export interface ListRevisionAssetsRequest {
1217
1281
  /**
@@ -1258,8 +1322,23 @@ declare namespace DataExchange {
1258
1322
  export type NextToken = string;
1259
1323
  export type Origin = "OWNED"|"ENTITLED"|string;
1260
1324
  export interface OriginDetails {
1325
+ /**
1326
+ * The product ID of the origin of the data set.
1327
+ */
1261
1328
  ProductId: __string;
1262
1329
  }
1330
+ export interface RedshiftDataShareAsset {
1331
+ /**
1332
+ * The Amazon Resource Name (ARN) of the datashare asset.
1333
+ */
1334
+ Arn: __string;
1335
+ }
1336
+ export interface RedshiftDataShareAssetSourceEntry {
1337
+ /**
1338
+ * The Amazon Resource Name (ARN) of the datashare asset.
1339
+ */
1340
+ DataShareArn: __string;
1341
+ }
1263
1342
  export interface RequestDetails {
1264
1343
  /**
1265
1344
  * Details about the export to signed URL request.
@@ -1281,6 +1360,10 @@ declare namespace DataExchange {
1281
1360
  * Details about the import from Amazon S3 request.
1282
1361
  */
1283
1362
  ImportAssetsFromS3?: ImportAssetsFromS3RequestDetails;
1363
+ /**
1364
+ * Details from an import from Amazon Redshift datashare request.
1365
+ */
1366
+ ImportAssetsFromRedshiftDataShares?: ImportAssetsFromRedshiftDataSharesRequestDetails;
1284
1367
  }
1285
1368
  export interface ResponseDetails {
1286
1369
  /**
@@ -1303,6 +1386,10 @@ declare namespace DataExchange {
1303
1386
  * Details for the import from Amazon S3 response.
1304
1387
  */
1305
1388
  ImportAssetsFromS3?: ImportAssetsFromS3ResponseDetails;
1389
+ /**
1390
+ * Details from an import from Amazon Redshift datashare response.
1391
+ */
1392
+ ImportAssetsFromRedshiftDataShares?: ImportAssetsFromRedshiftDataSharesResponseDetails;
1306
1393
  }
1307
1394
  export interface RevisionDestinationEntry {
1308
1395
  /**
@@ -1353,6 +1440,9 @@ declare namespace DataExchange {
1353
1440
  UpdatedAt: Timestamp;
1354
1441
  }
1355
1442
  export interface RevisionPublished {
1443
+ /**
1444
+ * The data set ID of the published revision.
1445
+ */
1356
1446
  DataSetId: Id;
1357
1447
  }
1358
1448
  export interface S3SnapshotAsset {
@@ -1382,7 +1472,7 @@ declare namespace DataExchange {
1382
1472
  Tags: MapOf__string;
1383
1473
  }
1384
1474
  export type Timestamp = Date;
1385
- export type Type = "IMPORT_ASSETS_FROM_S3"|"IMPORT_ASSET_FROM_SIGNED_URL"|"EXPORT_ASSETS_TO_S3"|"EXPORT_ASSET_TO_SIGNED_URL"|"EXPORT_REVISIONS_TO_S3"|string;
1475
+ export type Type = "IMPORT_ASSETS_FROM_S3"|"IMPORT_ASSET_FROM_SIGNED_URL"|"EXPORT_ASSETS_TO_S3"|"EXPORT_ASSET_TO_SIGNED_URL"|"EXPORT_REVISIONS_TO_S3"|"IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES"|string;
1386
1476
  export interface UntagResourceRequest {
1387
1477
  /**
1388
1478
  * An Amazon Resource Name (ARN) that uniquely identifies an AWS resource.
@@ -1417,11 +1507,11 @@ declare namespace DataExchange {
1417
1507
  */
1418
1508
  Arn?: Arn;
1419
1509
  /**
1420
- * Information about the asset, including its size.
1510
+ * Information about the asset.
1421
1511
  */
1422
1512
  AssetDetails?: AssetDetails;
1423
1513
  /**
1424
- * The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.
1514
+ * The type of asset that is added to a data set.
1425
1515
  */
1426
1516
  AssetType?: AssetType;
1427
1517
  /**
@@ -1437,7 +1527,7 @@ declare namespace DataExchange {
1437
1527
  */
1438
1528
  Id?: Id;
1439
1529
  /**
1440
- * The name of the asset When importing from Amazon S3, the S3 object key is used as the asset name. When exporting to Amazon S3, the asset name is used as default target S3 object key.
1530
+ * The name of the asset. When importing from Amazon S3, the S3 object key is used as the asset name. When exporting to Amazon S3, the asset name is used as default target S3 object key.
1441
1531
  */
1442
1532
  Name?: AssetName;
1443
1533
  /**
@@ -1473,7 +1563,7 @@ declare namespace DataExchange {
1473
1563
  */
1474
1564
  Arn?: Arn;
1475
1565
  /**
1476
- * The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.
1566
+ * The type of asset that is added to a data set.
1477
1567
  */
1478
1568
  AssetType?: AssetType;
1479
1569
  /**