AS2Validation Settings Args
data class AS2ValidationSettingsArgs(val checkCertificateRevocationListOnReceive: Output<Boolean>, val checkCertificateRevocationListOnSend: Output<Boolean>, val checkDuplicateMessage: Output<Boolean>, val compressMessage: Output<Boolean>, val encryptMessage: Output<Boolean>, val encryptionAlgorithm: Output<Either<String, EncryptionAlgorithm>>, val interchangeDuplicatesValidityDays: Output<Int>, val overrideMessageProperties: Output<Boolean>, val signMessage: Output<Boolean>, val signingAlgorithm: Output<Either<String, SigningAlgorithm>>? = null) : ConvertibleToJava<AS2ValidationSettingsArgs>
The AS2 agreement validation settings.
Constructors
Link copied to clipboard
constructor(checkCertificateRevocationListOnReceive: Output<Boolean>, checkCertificateRevocationListOnSend: Output<Boolean>, checkDuplicateMessage: Output<Boolean>, compressMessage: Output<Boolean>, encryptMessage: Output<Boolean>, encryptionAlgorithm: Output<Either<String, EncryptionAlgorithm>>, interchangeDuplicatesValidityDays: Output<Int>, overrideMessageProperties: Output<Boolean>, signMessage: Output<Boolean>, signingAlgorithm: Output<Either<String, SigningAlgorithm>>? = null)
Properties
Link copied to clipboard
The value indicating whether to check for certificate revocation list on receive.
Link copied to clipboard
The value indicating whether to check for certificate revocation list on send.
Link copied to clipboard
The value indicating whether to check for duplicate message.
Link copied to clipboard
The value indicating whether the message has to be compressed.
Link copied to clipboard
The encryption algorithm.
Link copied to clipboard
The value indicating whether the message has to be encrypted.
Link copied to clipboard
The number of days to look back for duplicate interchange.
Link copied to clipboard
The value indicating whether to override incoming message properties with those in agreement.
Link copied to clipboard
The signing algorithm.
Link copied to clipboard
The value indicating whether the message has to be signed.