Interface CfnDataSource.ConnectionConfigurationProperty

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

@Stability(Stable) public static interface CfnDataSource.ConnectionConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Provides the configuration information that's required to connect to a database.

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.*;
 ConnectionConfigurationProperty connectionConfigurationProperty = ConnectionConfigurationProperty.builder()
         .databaseHost("databaseHost")
         .databaseName("databaseName")
         .databasePort(123)
         .secretArn("secretArn")
         .tableName("tableName")
         .build();