Interface CfnDataSource.RdsHttpEndpointConfigProperty

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

@Stability(Stable) public static interface CfnDataSource.RdsHttpEndpointConfigProperty extends software.amazon.jsii.JsiiSerializable
Use the RdsHttpEndpointConfig property type to specify the RdsHttpEndpoint for an AWS AppSync relational database.

RdsHttpEndpointConfig is a property of the AWS AppSync DataSource RelationalDatabaseConfig resource.

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.appsync.*;
 RdsHttpEndpointConfigProperty rdsHttpEndpointConfigProperty = RdsHttpEndpointConfigProperty.builder()
         .awsRegion("awsRegion")
         .awsSecretStoreArn("awsSecretStoreArn")
         .dbClusterIdentifier("dbClusterIdentifier")
         // the properties below are optional
         .databaseName("databaseName")
         .schema("schema")
         .build();