Interface CfnConnector.SftpConfigProperty

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

@Stability(Stable) public static interface CfnConnector.SftpConfigProperty extends software.amazon.jsii.JsiiSerializable
A structure that contains the parameters for an SFTP 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.*;
 SftpConfigProperty sftpConfigProperty = SftpConfigProperty.builder()
         .trustedHostKeys(List.of("trustedHostKeys"))
         .userSecretId("userSecretId")
         .build();
 

See Also: