cdk-docker-image-deployment 0.0.171 → 0.0.172

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 +3 -3
  2. package/lib/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +6 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/metadata.json +3 -0
  8. package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +2 -1
  9. package/node_modules/aws-sdk/apis/resiliencehub-2020-04-30.min.json +639 -104
  10. package/node_modules/aws-sdk/apis/resiliencehub-2020-04-30.paginators.json +10 -0
  11. package/node_modules/aws-sdk/apis/tnb-2008-10-21.examples.json +5 -0
  12. package/node_modules/aws-sdk/apis/tnb-2008-10-21.min.json +1579 -0
  13. package/node_modules/aws-sdk/apis/tnb-2008-10-21.paginators.json +34 -0
  14. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  15. package/node_modules/aws-sdk/clients/all.js +2 -1
  16. package/node_modules/aws-sdk/clients/quicksight.d.ts +4 -0
  17. package/node_modules/aws-sdk/clients/resiliencehub.d.ts +743 -128
  18. package/node_modules/aws-sdk/clients/securityhub.d.ts +85 -85
  19. package/node_modules/aws-sdk/clients/tnb.d.ts +1607 -0
  20. package/node_modules/aws-sdk/clients/tnb.js +18 -0
  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 +44 -7
  23. package/node_modules/aws-sdk/dist/aws-sdk.js +6 -3
  24. package/node_modules/aws-sdk/dist/aws-sdk.min.js +3 -3
  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 +4 -4
@@ -0,0 +1,34 @@
1
+ {
2
+ "pagination": {
3
+ "ListSolFunctionInstances": {
4
+ "input_token": "nextToken",
5
+ "output_token": "nextToken",
6
+ "limit_key": "maxResults",
7
+ "result_key": "functionInstances"
8
+ },
9
+ "ListSolFunctionPackages": {
10
+ "input_token": "nextToken",
11
+ "output_token": "nextToken",
12
+ "limit_key": "maxResults",
13
+ "result_key": "functionPackages"
14
+ },
15
+ "ListSolNetworkInstances": {
16
+ "input_token": "nextToken",
17
+ "output_token": "nextToken",
18
+ "limit_key": "maxResults",
19
+ "result_key": "networkInstances"
20
+ },
21
+ "ListSolNetworkOperations": {
22
+ "input_token": "nextToken",
23
+ "output_token": "nextToken",
24
+ "limit_key": "maxResults",
25
+ "result_key": "networkOperations"
26
+ },
27
+ "ListSolNetworkPackages": {
28
+ "input_token": "nextToken",
29
+ "output_token": "nextToken",
30
+ "limit_key": "maxResults",
31
+ "result_key": "networkPackages"
32
+ }
33
+ }
34
+ }
@@ -338,3 +338,4 @@ export import LicenseManagerLinuxSubscriptions = require('./licensemanagerlinuxs
338
338
  export import KendraRanking = require('./kendraranking');
339
339
  export import CleanRooms = require('./cleanrooms');
340
340
  export import CloudTrailData = require('./cloudtraildata');
341
+ export import Tnb = require('./tnb');
@@ -339,5 +339,6 @@ module.exports = {
339
339
  LicenseManagerLinuxSubscriptions: require('./licensemanagerlinuxsubscriptions'),
340
340
  KendraRanking: require('./kendraranking'),
341
341
  CleanRooms: require('./cleanrooms'),
342
- CloudTrailData: require('./cloudtraildata')
342
+ CloudTrailData: require('./cloudtraildata'),
343
+ Tnb: require('./tnb')
343
344
  };
@@ -11510,6 +11510,10 @@ declare namespace QuickSight {
11510
11510
  * Location of the Amazon S3 manifest file. This is NULL if the manifest file was uploaded into Amazon QuickSight.
11511
11511
  */
11512
11512
  ManifestFileLocation: ManifestFileLocation;
11513
+ /**
11514
+ * Use the RoleArn structure to override an account-wide role for a specific S3 data source. For example, say an account administrator has turned off all S3 access with an account-wide role. The administrator can then use RoleArn to bypass the account-wide role and allow S3 access for the single S3 data source that is specified in the structure, even if the account-wide role forbidding S3 access is still active.
11515
+ */
11516
+ RoleArn?: RoleArn;
11513
11517
  }
11514
11518
  export interface S3Source {
11515
11519
  /**