@awboost/cfn-resource-types 0.1.257 → 0.1.258
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.
|
@@ -25,6 +25,10 @@ export type TransferAgreementProperties = {
|
|
|
25
25
|
* @pattern `^[\u0021-\u007E]+$`
|
|
26
26
|
*/
|
|
27
27
|
Description?: string;
|
|
28
|
+
/**
|
|
29
|
+
* Specifies whether to enforce an AS2 message is signed for this agreement.
|
|
30
|
+
*/
|
|
31
|
+
EnforceMessageSigning?: "ENABLED" | "DISABLED";
|
|
28
32
|
/**
|
|
29
33
|
* A unique identifier for the local profile.
|
|
30
34
|
* @minLength `19`
|
|
@@ -39,6 +43,10 @@ export type TransferAgreementProperties = {
|
|
|
39
43
|
* @pattern `^p-([0-9a-f]{17})$`
|
|
40
44
|
*/
|
|
41
45
|
PartnerProfileId: string;
|
|
46
|
+
/**
|
|
47
|
+
* Specifies whether to preserve the filename received for this agreement.
|
|
48
|
+
*/
|
|
49
|
+
PreserveFilename?: "ENABLED" | "DISABLED";
|
|
42
50
|
/**
|
|
43
51
|
* A unique identifier for the server.
|
|
44
52
|
* @minLength `19`
|
|
@@ -59,6 +59,10 @@ export type TransferConnectorProperties = {
|
|
|
59
59
|
* @pattern `^p-([0-9a-f]{17})$`
|
|
60
60
|
*/
|
|
61
61
|
PartnerProfileId?: string;
|
|
62
|
+
/**
|
|
63
|
+
* Specifies whether to use the AWS S3 object content-type as the content-type for the AS2 message.
|
|
64
|
+
*/
|
|
65
|
+
PreserveContentType?: "ENABLED" | "DISABLED";
|
|
62
66
|
/**
|
|
63
67
|
* Signing algorithm for this AS2 connector configuration.
|
|
64
68
|
*/
|