Interface CfnStorageSystem.ServerConfigurationProperty

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

@Stability(Stable) public static interface CfnStorageSystem.ServerConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The network settings that DataSync Discovery uses to connect with your on-premises storage system's management interface.

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.datasync.*;
 ServerConfigurationProperty serverConfigurationProperty = ServerConfigurationProperty.builder()
         .serverHostname("serverHostname")
         // the properties below are optional
         .serverPort(123)
         .build();