Interface CfnDataSourcePropsMixin.RelationalDatabaseConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSourcePropsMixin.RelationalDatabaseConfigProperty.Jsii$Proxy
- Enclosing class:
CfnDataSourcePropsMixin
@Stability(Stable)
public static interface CfnDataSourcePropsMixin.RelationalDatabaseConfigProperty
extends software.amazon.jsii.JsiiSerializable
Use the
RelationalDatabaseConfig property type to specify RelationalDatabaseConfig for an AWS AppSync data source.
RelationalDatabaseConfig is a property of the AWS::AppSync::DataSource property type.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.appsync.*;
RelationalDatabaseConfigProperty relationalDatabaseConfigProperty = RelationalDatabaseConfigProperty.builder()
.rdsHttpEndpointConfig(RdsHttpEndpointConfigProperty.builder()
.awsRegion("awsRegion")
.awsSecretStoreArn("awsSecretStoreArn")
.databaseName("databaseName")
.dbClusterIdentifier("dbClusterIdentifier")
.schema("schema")
.build())
.relationalDatabaseSourceType("relationalDatabaseSourceType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSourcePropsMixin.RelationalDatabaseConfigPropertystatic final classAn implementation forCfnDataSourcePropsMixin.RelationalDatabaseConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRdsHttpEndpointConfig
Information about the Amazon RDS resource.Returns union: either
IResolvableorCfnDataSourcePropsMixin.RdsHttpEndpointConfigProperty- See Also:
-
getRelationalDatabaseSourceType
The type of relational data source.- See Also:
-
builder
@Stability(Stable) static CfnDataSourcePropsMixin.RelationalDatabaseConfigProperty.Builder builder()
-