@awboost/cfn-resource-types 0.1.67 → 0.1.69
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-ACMPCA-CertificateAuthority.d.ts +4 -4
- package/lib/AWS-Bedrock-DataSource.d.ts +23 -1
- package/lib/AWS-Bedrock-KnowledgeBase.d.ts +1 -1
- package/lib/AWS-EC2-KeyPair.d.ts +31 -19
- package/lib/AWS-EC2-KeyPair.js +8 -1
- package/lib/AWS-EC2-TransitGatewayRouteTablePropagation.d.ts +9 -10
- package/lib/AWS-EC2-TransitGatewayRouteTablePropagation.js +1 -1
- package/lib/AWS-ECS-TaskDefinition.d.ts +14 -0
- package/lib/AWS-QBusiness-Application.d.ts +119 -0
- package/lib/AWS-QBusiness-Application.js +12 -0
- package/lib/AWS-QBusiness-DataSource.d.ts +225 -0
- package/lib/AWS-QBusiness-DataSource.js +12 -0
- package/lib/AWS-QBusiness-Index.d.ts +161 -0
- package/lib/AWS-QBusiness-Index.js +12 -0
- package/lib/AWS-QBusiness-Plugin.d.ts +192 -0
- package/lib/AWS-QBusiness-Plugin.js +12 -0
- package/lib/AWS-QBusiness-Retriever.d.ts +122 -0
- package/lib/AWS-QBusiness-Retriever.js +12 -0
- package/lib/AWS-QBusiness-WebExperience.d.ts +105 -0
- package/lib/AWS-QBusiness-WebExperience.js +12 -0
- package/lib/AWS-Transfer-Agreement.d.ts +2 -2
- package/lib/AWS-Transfer-Certificate.d.ts +18 -24
- package/lib/AWS-Transfer-Connector.d.ts +12 -2
- package/lib/AWS-Transfer-Profile.d.ts +1 -0
- package/lib/AWS-Transfer-Workflow.d.ts +2 -2
- package/package.json +1 -1
|
@@ -10,28 +10,24 @@ export type TransferCertificateProperties = {
|
|
|
10
10
|
*/
|
|
11
11
|
ActiveDate?: string;
|
|
12
12
|
/**
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
-ÿ]*`
|
|
19
|
-
*/
|
|
13
|
+
* Specifies the certificate body to be imported.
|
|
14
|
+
* @minLength `1`
|
|
15
|
+
* @maxLength `16384`
|
|
16
|
+
* @pattern `^[\t\n\r\u0020-\u00FF]+$`
|
|
17
|
+
*/
|
|
20
18
|
Certificate: string;
|
|
21
19
|
/**
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
-ÿ]*`
|
|
28
|
-
*/
|
|
20
|
+
* Specifies the certificate chain to be imported.
|
|
21
|
+
* @minLength `1`
|
|
22
|
+
* @maxLength `2097152`
|
|
23
|
+
* @pattern `^[\t\n\r\u0020-\u00FF]+$`
|
|
24
|
+
*/
|
|
29
25
|
CertificateChain?: string;
|
|
30
26
|
/**
|
|
31
27
|
* A textual description for the certificate.
|
|
32
28
|
* @minLength `1`
|
|
33
29
|
* @maxLength `200`
|
|
34
|
-
* @pattern `^[\
|
|
30
|
+
* @pattern `^[\u0021-\u007E]+$`
|
|
35
31
|
*/
|
|
36
32
|
Description?: string;
|
|
37
33
|
/**
|
|
@@ -39,13 +35,11 @@ export type TransferCertificateProperties = {
|
|
|
39
35
|
*/
|
|
40
36
|
InactiveDate?: string;
|
|
41
37
|
/**
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
-ÿ]*`
|
|
48
|
-
*/
|
|
38
|
+
* Specifies the private key for the certificate.
|
|
39
|
+
* @minLength `1`
|
|
40
|
+
* @maxLength `16384`
|
|
41
|
+
* @pattern `^[\t\n\r\u0020-\u00FF]+$`
|
|
42
|
+
*/
|
|
49
43
|
PrivateKey?: string;
|
|
50
44
|
/**
|
|
51
45
|
* Key-value pairs that can be used to group and search for certificates. Tags are metadata attached to certificates for any purpose.
|
|
@@ -55,7 +49,7 @@ export type TransferCertificateProperties = {
|
|
|
55
49
|
/**
|
|
56
50
|
* Specifies the usage type for the certificate.
|
|
57
51
|
*/
|
|
58
|
-
Usage: "SIGNING" | "ENCRYPTION";
|
|
52
|
+
Usage: "SIGNING" | "ENCRYPTION" | "TLS";
|
|
59
53
|
};
|
|
60
54
|
/**
|
|
61
55
|
* Attribute type definition for `AWS::Transfer::Certificate`.
|
|
@@ -88,7 +82,7 @@ export type TransferCertificateAttributes = {
|
|
|
88
82
|
* Specifies Certificate's serial.
|
|
89
83
|
* @minLength `0`
|
|
90
84
|
* @maxLength `48`
|
|
91
|
-
* @pattern `^[
|
|
85
|
+
* @pattern `^[0-9a-fA-F{}:?]*$`
|
|
92
86
|
*/
|
|
93
87
|
Serial: string;
|
|
94
88
|
/**
|
|
@@ -29,7 +29,7 @@ export type TransferConnectorProperties = {
|
|
|
29
29
|
/**
|
|
30
30
|
* Encryption algorithm for this AS2 connector configuration.
|
|
31
31
|
*/
|
|
32
|
-
EncryptionAlgorithm?: "AES128_CBC" | "AES192_CBC" | "AES256_CBC" | "NONE";
|
|
32
|
+
EncryptionAlgorithm?: "AES128_CBC" | "AES192_CBC" | "AES256_CBC" | "NONE" | "DES_EDE3_CBC";
|
|
33
33
|
/**
|
|
34
34
|
* A unique identifier for the local profile.
|
|
35
35
|
* @minLength `19`
|
|
@@ -49,7 +49,7 @@ export type TransferConnectorProperties = {
|
|
|
49
49
|
* The message subject for this AS2 connector configuration.
|
|
50
50
|
* @minLength `1`
|
|
51
51
|
* @maxLength `1024`
|
|
52
|
-
* @pattern `^[\
|
|
52
|
+
* @pattern `^[\u0020-\u007E\t]+$`
|
|
53
53
|
*/
|
|
54
54
|
MessageSubject?: string;
|
|
55
55
|
/**
|
|
@@ -71,6 +71,12 @@ export type TransferConnectorProperties = {
|
|
|
71
71
|
* @pattern `arn:.*role/.*`
|
|
72
72
|
*/
|
|
73
73
|
LoggingRole?: string;
|
|
74
|
+
/**
|
|
75
|
+
* Security policy for SFTP Connector
|
|
76
|
+
* @maxLength `50`
|
|
77
|
+
* @pattern `TransferSFTPConnectorSecurityPolicy-[A-Za-z0-9-]+`
|
|
78
|
+
*/
|
|
79
|
+
SecurityPolicyName?: string;
|
|
74
80
|
/**
|
|
75
81
|
* Configuration for an SFTP connector.
|
|
76
82
|
*/
|
|
@@ -117,6 +123,10 @@ export type TransferConnectorAttributes = {
|
|
|
117
123
|
* @pattern `^c-([0-9a-f]{17})$`
|
|
118
124
|
*/
|
|
119
125
|
ConnectorId: string;
|
|
126
|
+
/**
|
|
127
|
+
* The list of egress IP addresses of this connector. These IP addresses are assigned automatically when you create the connector.
|
|
128
|
+
*/
|
|
129
|
+
ServiceManagedEgressIpAddresses: string[];
|
|
120
130
|
};
|
|
121
131
|
/**
|
|
122
132
|
* Type definition for `AWS::Transfer::Connector.Tag`.
|
|
@@ -226,7 +226,7 @@ export type WorkflowStep = {
|
|
|
226
226
|
/**
|
|
227
227
|
* Specifies the location for the file being decrypted. Only applicable for the Decrypt type of workflow steps.
|
|
228
228
|
*/
|
|
229
|
-
DestinationFileLocation
|
|
229
|
+
DestinationFileLocation: InputFileLocation;
|
|
230
230
|
/**
|
|
231
231
|
* The name of the step, used as an identifier.
|
|
232
232
|
* @minLength `0`
|
|
@@ -248,7 +248,7 @@ export type WorkflowStep = {
|
|
|
248
248
|
/**
|
|
249
249
|
* Specifies which encryption method to use.
|
|
250
250
|
*/
|
|
251
|
-
Type
|
|
251
|
+
Type: "PGP";
|
|
252
252
|
};
|
|
253
253
|
/**
|
|
254
254
|
* Details for a step that deletes the file.
|