cdk-docker-image-deployment 0.0.279 → 0.0.281

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 (49) hide show
  1. package/.gitattributes +1 -1
  2. package/.jsii +4 -4
  3. package/.projenrc.ts +36 -0
  4. package/lib/destination.js +1 -1
  5. package/lib/docker-image-deployment.js +1 -1
  6. package/lib/source.js +1 -1
  7. package/node_modules/@types/aws-lambda/README.md +1 -1
  8. package/node_modules/@types/aws-lambda/common/api-gateway.d.ts +6 -3
  9. package/node_modules/@types/aws-lambda/index.d.ts +39 -39
  10. package/node_modules/@types/aws-lambda/package.json +2 -2
  11. package/node_modules/@types/aws-lambda/trigger/alb.d.ts +1 -1
  12. package/node_modules/@types/aws-lambda/trigger/api-gateway-proxy.d.ts +30 -16
  13. package/node_modules/@types/aws-lambda/trigger/autoscaling.d.ts +17 -17
  14. package/node_modules/@types/aws-lambda/trigger/cloudformation-custom-resource.d.ts +6 -4
  15. package/node_modules/@types/aws-lambda/trigger/cloudfront-request.d.ts +2 -2
  16. package/node_modules/@types/aws-lambda/trigger/cloudfront-response.d.ts +2 -2
  17. package/node_modules/@types/aws-lambda/trigger/cloudwatch-logs.d.ts +1 -1
  18. package/node_modules/@types/aws-lambda/trigger/codebuild-cloudwatch-state.d.ts +8 -9
  19. package/node_modules/@types/aws-lambda/trigger/codecommit.d.ts +2 -3
  20. package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-action.d.ts +1 -1
  21. package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-pipeline.d.ts +1 -1
  22. package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-stage.d.ts +1 -1
  23. package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch.d.ts +4 -4
  24. package/node_modules/@types/aws-lambda/trigger/codepipeline.d.ts +2 -2
  25. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/_common.d.ts +24 -24
  26. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/create-auth-challenge.d.ts +1 -0
  27. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-email-sender.d.ts +17 -34
  28. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-message.d.ts +16 -14
  29. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-sms-sender.d.ts +21 -25
  30. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/define-auth-challenge.d.ts +1 -0
  31. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/index.d.ts +28 -21
  32. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-authentication.d.ts +5 -4
  33. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-confirmation.d.ts +10 -8
  34. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-signup.d.ts +13 -13
  35. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation.d.ts +28 -23
  36. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/user-migration.d.ts +21 -21
  37. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/verify-auth-challenge-response.d.ts +1 -0
  38. package/node_modules/@types/aws-lambda/trigger/connect-contact-flow.d.ts +1 -2
  39. package/node_modules/@types/aws-lambda/trigger/dynamodb-stream.d.ts +1 -1
  40. package/node_modules/@types/aws-lambda/trigger/iot.d.ts +1 -1
  41. package/node_modules/@types/aws-lambda/trigger/kinesis-firehose-transformation.d.ts +1 -1
  42. package/node_modules/@types/aws-lambda/trigger/kinesis-stream.d.ts +6 -3
  43. package/node_modules/@types/aws-lambda/trigger/lex-v2.d.ts +9 -14
  44. package/node_modules/@types/aws-lambda/trigger/lex.d.ts +14 -10
  45. package/node_modules/@types/aws-lambda/trigger/s3-batch.d.ts +1 -1
  46. package/node_modules/@types/aws-lambda/trigger/s3.d.ts +1 -1
  47. package/node_modules/@types/aws-lambda/trigger/ses.d.ts +7 -1
  48. package/node_modules/@types/aws-lambda/trigger/sns.d.ts +2 -2
  49. package/package.json +7 -6
@@ -1,4 +1,4 @@
1
- import { Handler, Callback } from "../handler";
1
+ import { Handler, Callback } from '../handler';
2
2
 
3
3
  /**
4
4
  * S3 Batch Operations event
@@ -1,4 +1,4 @@
1
- import { Handler } from "../handler";
1
+ import { Handler } from '../handler';
2
2
 
3
3
  export type S3Handler = Handler<S3Event, void>;
4
4
 
@@ -84,7 +84,13 @@ export interface SESReceipt {
84
84
  dkimVerdict: SESReceiptStatus;
85
85
  dmarcVerdict: SESReceiptStatus;
86
86
  dmarcPolicy?: 'none' | 'quarantine' | 'reject' | undefined;
87
- action: SESReceiptS3Action | SESReceiptSnsAction | SESReceiptBounceAction | SESReceiptLambdaAction | SESReceiptStopAction | SESReceiptWorkMailAction;
87
+ action:
88
+ | SESReceiptS3Action
89
+ | SESReceiptSnsAction
90
+ | SESReceiptBounceAction
91
+ | SESReceiptLambdaAction
92
+ | SESReceiptStopAction
93
+ | SESReceiptWorkMailAction;
88
94
  }
89
95
 
90
96
  export interface SESMessage {
@@ -16,12 +16,12 @@ export interface SNSMessage {
16
16
  SignatureVersion: string;
17
17
  Timestamp: string;
18
18
  Signature: string;
19
- SigningCertUrl: string;
19
+ SigningCertURL: string;
20
20
  MessageId: string;
21
21
  Message: string;
22
22
  MessageAttributes: SNSMessageAttributes;
23
23
  Type: string;
24
- UnsubscribeUrl: string;
24
+ UnsubscribeURL: string;
25
25
  TopicArn: string;
26
26
  Subject?: string;
27
27
  Token?: string;
package/package.json CHANGED
@@ -52,13 +52,14 @@
52
52
  "jest": "^27",
53
53
  "jest-junit": "^15",
54
54
  "jsii": "1.x",
55
- "jsii-diff": "^1.83.0",
55
+ "jsii-diff": "^1.84.0",
56
56
  "jsii-docgen": "^7.2.9",
57
- "jsii-pacmak": "^1.83.0",
57
+ "jsii-pacmak": "^1.84.0",
58
58
  "npm-check-updates": "^16",
59
- "projen": "^0.71.94",
59
+ "projen": "^0.71.96",
60
60
  "standard-version": "^9",
61
61
  "ts-jest": "^27",
62
+ "ts-node": "^10.9.1",
62
63
  "typescript": "^4.9.5"
63
64
  },
64
65
  "peerDependencies": {
@@ -66,7 +67,7 @@
66
67
  "constructs": "^10.0.5"
67
68
  },
68
69
  "dependencies": {
69
- "@types/aws-lambda": "^8.10.117",
70
+ "@types/aws-lambda": "^8.10.119",
70
71
  "aws-sdk": "^2.1397.0"
71
72
  },
72
73
  "bundledDependencies": [
@@ -83,7 +84,7 @@
83
84
  "main": "lib/index.js",
84
85
  "license": "Apache-2.0",
85
86
  "homepage": "https://github.com/cdklabs/cdk-docker-image-deployment#readme",
86
- "version": "0.0.279",
87
+ "version": "0.0.281",
87
88
  "jest": {
88
89
  "testMatch": [
89
90
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",
@@ -150,5 +151,5 @@
150
151
  "rootDir": "src"
151
152
  }
152
153
  },
153
- "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
154
+ "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"."
154
155
  }