Interface CfnDataProvider.PostgreSqlSettingsProperty

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

@Stability(Stable) public static interface CfnDataProvider.PostgreSqlSettingsProperty extends software.amazon.jsii.JsiiSerializable
Provides information that defines a PostgreSQL endpoint.

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.dms.*;
 PostgreSqlSettingsProperty postgreSqlSettingsProperty = PostgreSqlSettingsProperty.builder()
         .databaseName("databaseName")
         .port(123)
         .serverName("serverName")
         .sslMode("sslMode")
         // the properties below are optional
         .certificateArn("certificateArn")
         .build();
 

See Also: