cdk-docker-image-deployment 0.0.178 → 0.0.180

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 (44) 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 +21 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/codecatalyst-2022-09-28.min.json +64 -7
  8. package/node_modules/aws-sdk/apis/comprehend-2017-11-27.min.json +692 -153
  9. package/node_modules/aws-sdk/apis/comprehend-2017-11-27.paginators.json +15 -0
  10. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1275 -1272
  11. package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +249 -215
  12. package/node_modules/aws-sdk/apis/kms-2014-11-01.examples.json +62 -2
  13. package/node_modules/aws-sdk/apis/lightsail-2016-11-28.min.json +282 -110
  14. package/node_modules/aws-sdk/apis/managedblockchain-2018-09-24.min.json +35 -29
  15. package/node_modules/aws-sdk/apis/omics-2022-11-28.min.json +142 -141
  16. package/node_modules/aws-sdk/apis/pi-2018-02-27.min.json +2 -1
  17. package/node_modules/aws-sdk/apis/pipes-2015-10-07.min.json +42 -42
  18. package/node_modules/aws-sdk/apis/pricing-2017-10-15.min.json +62 -0
  19. package/node_modules/aws-sdk/apis/pricing-2017-10-15.paginators.json +12 -3
  20. package/node_modules/aws-sdk/apis/s3outposts-2017-07-25.min.json +40 -0
  21. package/node_modules/aws-sdk/apis/s3outposts-2017-07-25.paginators.json +6 -0
  22. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +20 -14
  23. package/node_modules/aws-sdk/clients/codecatalyst.d.ts +59 -9
  24. package/node_modules/aws-sdk/clients/comprehend.d.ts +851 -52
  25. package/node_modules/aws-sdk/clients/ec2.d.ts +82 -77
  26. package/node_modules/aws-sdk/clients/iot.d.ts +40 -4
  27. package/node_modules/aws-sdk/clients/kms.d.ts +20 -20
  28. package/node_modules/aws-sdk/clients/lightsail.d.ts +241 -2
  29. package/node_modules/aws-sdk/clients/managedblockchain.d.ts +21 -13
  30. package/node_modules/aws-sdk/clients/migrationhubstrategy.d.ts +2 -2
  31. package/node_modules/aws-sdk/clients/omics.d.ts +33 -28
  32. package/node_modules/aws-sdk/clients/organizations.d.ts +10 -10
  33. package/node_modules/aws-sdk/clients/pi.d.ts +5 -0
  34. package/node_modules/aws-sdk/clients/pipes.d.ts +4 -5
  35. package/node_modules/aws-sdk/clients/pricing.d.ts +96 -1
  36. package/node_modules/aws-sdk/clients/s3outposts.d.ts +50 -0
  37. package/node_modules/aws-sdk/clients/sagemaker.d.ts +15 -14
  38. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  39. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +16 -16
  40. package/node_modules/aws-sdk/dist/aws-sdk.js +2321 -1659
  41. package/node_modules/aws-sdk/dist/aws-sdk.min.js +81 -81
  42. package/node_modules/aws-sdk/lib/core.js +1 -1
  43. package/node_modules/aws-sdk/package.json +1 -1
  44. package/package.json +4 -4
@@ -1799,8 +1799,37 @@
1799
1799
  }
1800
1800
  },
1801
1801
  "description": "This operation uses the private key in an asymmetric elliptic curve (ECC) KMS key to generate a digital signature for a given message.",
1802
- "id": "to-digitally-sign-a-message-with-an-asymmetric-kms-key-1628631433832",
1802
+ "id": "to-digitally-sign-a-message-with-an-asymmetric-kms-key-1",
1803
1803
  "title": "To digitally sign a message with an asymmetric KMS key."
1804
+ },
1805
+ {
1806
+ "input": {
1807
+ "KeyId": "alias/RSA_signing_key",
1808
+ "Message": "<message digest to be signed>",
1809
+ "MessageType": "DIGEST",
1810
+ "SigningAlgorithm": "RSASSA_PKCS1_V1_5_SHA_256"
1811
+ },
1812
+ "output": {
1813
+ "KeyId": "arn:aws:kms:us-east-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321",
1814
+ "Signature": "<binary data>",
1815
+ "SigningAlgorithm": "RSASSA_PKCS1_V1_5_SHA_256"
1816
+ },
1817
+ "comments": {
1818
+ "input": {
1819
+ "KeyId": "The asymmetric KMS key to be used to generate the digital signature. This example uses an alias of the KMS key.",
1820
+ "Message": "Message to be signed. Use Base-64 for the CLI.",
1821
+ "MessageType": "Indicates whether the message is RAW or a DIGEST. When it is RAW, KMS hashes the message before signing. When it is DIGEST, KMS skips the hashing step and signs the Message value.",
1822
+ "SigningAlgorithm": "The requested signing algorithm. This must be an algorithm that the KMS key supports."
1823
+ },
1824
+ "output": {
1825
+ "KeyId": "The key ARN of the asymmetric KMS key that was used to sign the message.",
1826
+ "Signature": "The digital signature of the message.",
1827
+ "SigningAlgorithm": "The actual signing algorithm that was used to generate the signature."
1828
+ }
1829
+ },
1830
+ "description": "This operation uses the private key in an asymmetric RSA signing KMS key to generate a digital signature for a message digest. In this example, a large message was hashed and the resulting digest is provided in the Message parameter. To tell KMS not to hash the message again, the MessageType field is set to DIGEST",
1831
+ "id": "to-digitally-sign-a-message-digest-with-an-asymmetric-kms-key-2",
1832
+ "title": "To digitally sign a message digest with an asymmetric KMS key."
1804
1833
  }
1805
1834
  ],
1806
1835
  "TagResource": [
@@ -2048,8 +2077,39 @@
2048
2077
  }
2049
2078
  },
2050
2079
  "description": "This operation uses the public key in an elliptic curve (ECC) asymmetric key to verify a digital signature within AWS KMS.",
2051
- "id": "to-use-an-asymmetric-kms-key-to-verify-a-digital-signature-1628633365663",
2080
+ "id": "to-use-an-asymmetric-kms-key-to-verify-a-digital-signature-1",
2052
2081
  "title": "To use an asymmetric KMS key to verify a digital signature"
2082
+ },
2083
+ {
2084
+ "input": {
2085
+ "KeyId": "arn:aws:kms:us-east-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321",
2086
+ "Message": "<message digest to be verified>",
2087
+ "MessageType": "DIGEST",
2088
+ "Signature": "<binary data>",
2089
+ "SigningAlgorithm": "RSASSA_PSS_SHA_512"
2090
+ },
2091
+ "output": {
2092
+ "KeyId": "arn:aws:kms:us-east-2:111122223333:key/0987dcba-09fe-87dc-65ba-ab0987654321",
2093
+ "SignatureValid": true,
2094
+ "SigningAlgorithm": "RSASSA_PSS_SHA_512"
2095
+ },
2096
+ "comments": {
2097
+ "input": {
2098
+ "KeyId": "The asymmetric KMS key to be used to verify the digital signature. This example uses an alias to identify the KMS key.",
2099
+ "Message": "The message that was signed.",
2100
+ "MessageType": "Indicates whether the message is RAW or a DIGEST. When it is RAW, KMS hashes the message before signing. When it is DIGEST, KMS skips the hashing step and signs the Message value.",
2101
+ "Signature": "The signature to be verified.",
2102
+ "SigningAlgorithm": "The signing algorithm to be used to verify the signature."
2103
+ },
2104
+ "output": {
2105
+ "KeyId": "The key ARN of the asymmetric KMS key that was used to verify the digital signature.",
2106
+ "SignatureValid": "A value of 'true' Indicates that the signature was verified. If verification fails, the call to Verify fails.",
2107
+ "SigningAlgorithm": "The signing algorithm that was used to verify the signature."
2108
+ }
2109
+ },
2110
+ "description": "This operation uses the public key in an RSA asymmetric signing key pair to verify the digital signature of a message digest. Hashing a message into a digest before sending it to KMS lets you verify messages that exceed the 4096-byte message size limit. To indicate that the value of Message is a digest, use the MessageType parameter ",
2111
+ "id": "to-use-an-asymmetric-kms-key-to-verify-a-digital-signature-on-a-message-digest-2",
2112
+ "title": "To use an asymmetric KMS key to verify a digital signature on a message digest"
2053
2113
  }
2054
2114
  ],
2055
2115
  "VerifyMac": [