Interface CfnDataSource.ProxyConfigurationProperty

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

@Stability(Stable) public static interface CfnDataSource.ProxyConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Provides the configuration information for a web proxy to connect to website hosts.

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.kendra.*;
 ProxyConfigurationProperty proxyConfigurationProperty = ProxyConfigurationProperty.builder()
         .host("host")
         .port(123)
         // the properties below are optional
         .credentials("credentials")
         .build();
 

See Also: