@awboost/cfn-resource-types 0.1.310 → 0.1.312
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.
- package/lib/AWS-Batch-ConsumableResource.d.ts +2 -2
- package/lib/AWS-Batch-ConsumableResource.js +1 -1
- package/lib/AWS-Batch-JobDefinition.d.ts +8 -0
- package/lib/AWS-CodeBuild-Project.d.ts +2 -0
- package/lib/AWS-DMS-ReplicationInstance.d.ts +1 -0
- package/lib/AWS-EC2-VPCEndpoint.d.ts +32 -0
- package/lib/AWS-Events-ApiDestination.d.ts +5 -0
- package/lib/AWS-Events-Archive.d.ts +5 -0
- package/lib/AWS-Events-Connection.d.ts +5 -0
- package/lib/AWS-Lex-Bot.d.ts +72 -684
- package/lib/AWS-PaymentCryptography-Key.d.ts +7 -1
- package/lib/AWS-Transfer-WebApp.d.ts +6 -0
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-paymentcryptography-key.html}
|
|
6
6
|
*/
|
|
7
7
|
export type PaymentCryptographyKeyProperties = {
|
|
8
|
+
DeriveKeyUsage?: DeriveKeyUsage;
|
|
8
9
|
Enabled?: boolean;
|
|
9
10
|
Exportable: boolean;
|
|
10
11
|
KeyAttributes: KeyAttributes;
|
|
@@ -35,6 +36,11 @@ export type PaymentCryptographyKeyAttributes = {
|
|
|
35
36
|
*/
|
|
36
37
|
KeyState: KeyState;
|
|
37
38
|
};
|
|
39
|
+
/**
|
|
40
|
+
* Type definition for `AWS::PaymentCryptography::Key.DeriveKeyUsage`.
|
|
41
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-derivekeyusage.html}
|
|
42
|
+
*/
|
|
43
|
+
export type DeriveKeyUsage = "TR31_B0_BASE_DERIVATION_KEY" | "TR31_C0_CARD_VERIFICATION_KEY" | "TR31_D0_SYMMETRIC_DATA_ENCRYPTION_KEY" | "TR31_E0_EMV_MKEY_APP_CRYPTOGRAMS" | "TR31_E1_EMV_MKEY_CONFIDENTIALITY" | "TR31_E2_EMV_MKEY_INTEGRITY" | "TR31_E4_EMV_MKEY_DYNAMIC_NUMBERS" | "TR31_E5_EMV_MKEY_CARD_PERSONALIZATION" | "TR31_E6_EMV_MKEY_OTHER" | "TR31_K0_KEY_ENCRYPTION_KEY" | "TR31_K1_KEY_BLOCK_PROTECTION_KEY" | "TR31_M3_ISO_9797_3_MAC_KEY" | "TR31_M1_ISO_9797_1_MAC_KEY" | "TR31_M6_ISO_9797_5_CMAC_KEY" | "TR31_M7_HMAC_KEY" | "TR31_P0_PIN_ENCRYPTION_KEY" | "TR31_P1_PIN_GENERATION_KEY" | "TR31_V1_IBM3624_PIN_VERIFICATION_KEY" | "TR31_V2_VISA_PIN_VERIFICATION_KEY";
|
|
38
44
|
/**
|
|
39
45
|
* Type definition for `AWS::PaymentCryptography::Key.KeyAlgorithm`.
|
|
40
46
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyalgorithm.html}
|
|
@@ -54,7 +60,7 @@ export type KeyAttributes = {
|
|
|
54
60
|
* Type definition for `AWS::PaymentCryptography::Key.KeyCheckValueAlgorithm`.
|
|
55
61
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keycheckvaluealgorithm.html}
|
|
56
62
|
*/
|
|
57
|
-
export type KeyCheckValueAlgorithm = "CMAC" | "ANSI_X9_24";
|
|
63
|
+
export type KeyCheckValueAlgorithm = "CMAC" | "ANSI_X9_24" | "HMAC";
|
|
58
64
|
/**
|
|
59
65
|
* Type definition for `AWS::PaymentCryptography::Key.KeyClass`.
|
|
60
66
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyclass.html}
|
|
@@ -21,6 +21,7 @@ export type TransferWebAppProperties = {
|
|
|
21
21
|
*/
|
|
22
22
|
Tags?: Tag[];
|
|
23
23
|
WebAppCustomization?: WebAppCustomization;
|
|
24
|
+
WebAppEndpointPolicy?: WebAppEndpointPolicy;
|
|
24
25
|
/**
|
|
25
26
|
* A union that contains the value for number of concurrent connections or the user sessions on your web app.
|
|
26
27
|
*/
|
|
@@ -119,6 +120,11 @@ export type WebAppCustomization = {
|
|
|
119
120
|
*/
|
|
120
121
|
Title?: string;
|
|
121
122
|
};
|
|
123
|
+
/**
|
|
124
|
+
* Type definition for `AWS::Transfer::WebApp.WebAppEndpointPolicy`.
|
|
125
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-webapp-webappendpointpolicy.html}
|
|
126
|
+
*/
|
|
127
|
+
export type WebAppEndpointPolicy = "STANDARD" | "FIPS";
|
|
122
128
|
/**
|
|
123
129
|
* Type definition for `AWS::Transfer::WebApp.WebAppUnits`.
|
|
124
130
|
* A union that contains the value for number of concurrent connections or the user sessions on your web app.
|