cdk-docker-image-deployment 0.0.170 → 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 (31) 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 +10 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +4 -0
  8. package/node_modules/aws-sdk/apis/metadata.json +3 -0
  9. package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +2 -1
  10. package/node_modules/aws-sdk/apis/resiliencehub-2020-04-30.min.json +639 -104
  11. package/node_modules/aws-sdk/apis/resiliencehub-2020-04-30.paginators.json +10 -0
  12. package/node_modules/aws-sdk/apis/tnb-2008-10-21.examples.json +5 -0
  13. package/node_modules/aws-sdk/apis/tnb-2008-10-21.min.json +1579 -0
  14. package/node_modules/aws-sdk/apis/tnb-2008-10-21.paginators.json +34 -0
  15. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  16. package/node_modules/aws-sdk/clients/all.js +2 -1
  17. package/node_modules/aws-sdk/clients/auditmanager.d.ts +9 -9
  18. package/node_modules/aws-sdk/clients/connect.d.ts +158 -158
  19. package/node_modules/aws-sdk/clients/quicksight.d.ts +4 -0
  20. package/node_modules/aws-sdk/clients/resiliencehub.d.ts +743 -128
  21. package/node_modules/aws-sdk/clients/securityhub.d.ts +85 -85
  22. package/node_modules/aws-sdk/clients/tnb.d.ts +1607 -0
  23. package/node_modules/aws-sdk/clients/tnb.js +18 -0
  24. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  25. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +45 -8
  26. package/node_modules/aws-sdk/dist/aws-sdk.js +10 -3
  27. package/node_modules/aws-sdk/dist/aws-sdk.min.js +8 -8
  28. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  29. package/node_modules/aws-sdk/lib/core.js +1 -1
  30. package/node_modules/aws-sdk/package.json +1 -1
  31. package/package.json +5 -5
@@ -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
  };
@@ -484,11 +484,11 @@ declare class AuditManager extends Service {
484
484
  */
485
485
  updateControl(callback?: (err: AWSError, data: AuditManager.Types.UpdateControlResponse) => void): Request<AuditManager.Types.UpdateControlResponse, AWSError>;
486
486
  /**
487
- * Updates Audit Manager settings for the current user account.
487
+ * Updates Audit Manager settings for the current account.
488
488
  */
489
489
  updateSettings(params: AuditManager.Types.UpdateSettingsRequest, callback?: (err: AWSError, data: AuditManager.Types.UpdateSettingsResponse) => void): Request<AuditManager.Types.UpdateSettingsResponse, AWSError>;
490
490
  /**
491
- * Updates Audit Manager settings for the current user account.
491
+ * Updates Audit Manager settings for the current account.
492
492
  */
493
493
  updateSettings(callback?: (err: AWSError, data: AuditManager.Types.UpdateSettingsResponse) => void): Request<AuditManager.Types.UpdateSettingsResponse, AWSError>;
494
494
  /**
@@ -1197,7 +1197,7 @@ declare namespace AuditManager {
1197
1197
  */
1198
1198
  createdAt?: Timestamp;
1199
1199
  /**
1200
- * The IAM user or role that performed the action.
1200
+ * The user or role that performed the action.
1201
1201
  */
1202
1202
  createdBy?: IamArn;
1203
1203
  }
@@ -1254,11 +1254,11 @@ declare namespace AuditManager {
1254
1254
  */
1255
1255
  lastUpdatedAt?: Timestamp;
1256
1256
  /**
1257
- * The IAM user or role that created the control.
1257
+ * The user or role that created the control.
1258
1258
  */
1259
1259
  createdBy?: CreatedBy;
1260
1260
  /**
1261
- * The IAM user or role that most recently updated the control.
1261
+ * The user or role that most recently updated the control.
1262
1262
  */
1263
1263
  lastUpdatedBy?: LastUpdatedBy;
1264
1264
  /**
@@ -1663,7 +1663,7 @@ declare namespace AuditManager {
1663
1663
  */
1664
1664
  comment?: DelegationComment;
1665
1665
  /**
1666
- * The IAM user or role that created the delegation.
1666
+ * The user or role that created the delegation.
1667
1667
  */
1668
1668
  createdBy?: CreatedBy;
1669
1669
  }
@@ -1823,7 +1823,7 @@ declare namespace AuditManager {
1823
1823
  */
1824
1824
  attributes?: EvidenceAttributes;
1825
1825
  /**
1826
- * The unique identifier for the IAM user or role that's associated with the evidence.
1826
+ * The unique identifier for the user or role that's associated with the evidence.
1827
1827
  */
1828
1828
  iamId?: IamArn;
1829
1829
  /**
@@ -1938,11 +1938,11 @@ declare namespace AuditManager {
1938
1938
  */
1939
1939
  lastUpdatedAt?: Timestamp;
1940
1940
  /**
1941
- * The IAM user or role that created the framework.
1941
+ * The user or role that created the framework.
1942
1942
  */
1943
1943
  createdBy?: CreatedBy;
1944
1944
  /**
1945
- * The IAM user or role that most recently updated the framework.
1945
+ * The user or role that most recently updated the framework.
1946
1946
  */
1947
1947
  lastUpdatedBy?: LastUpdatedBy;
1948
1948
  /**