Interface CfnConnector.As2ConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConnector.As2ConfigProperty.Jsii$Proxy
Enclosing class:
CfnConnector

@Stability(Stable) public static interface CfnConnector.As2ConfigProperty extends software.amazon.jsii.JsiiSerializable
A structure that contains the parameters for an AS2 connector object.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.transfer.*;
 As2ConfigProperty as2ConfigProperty = As2ConfigProperty.builder()
         .basicAuthSecretId("basicAuthSecretId")
         .compression("compression")
         .encryptionAlgorithm("encryptionAlgorithm")
         .localProfileId("localProfileId")
         .mdnResponse("mdnResponse")
         .mdnSigningAlgorithm("mdnSigningAlgorithm")
         .messageSubject("messageSubject")
         .partnerProfileId("partnerProfileId")
         .signingAlgorithm("signingAlgorithm")
         .build();
 

See Also: