interface RelationalDatabaseConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppSync.CfnDataSourcePropsMixin.RelationalDatabaseConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappsync#CfnDataSourcePropsMixin_RelationalDatabaseConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appsync.CfnDataSourcePropsMixin.RelationalDatabaseConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_appsync.CfnDataSourcePropsMixin.RelationalDatabaseConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appsync » CfnDataSourcePropsMixin » RelationalDatabaseConfigProperty |
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 { aws_appsync as appsync } from '@aws-cdk/cfn-property-mixins';
const relationalDatabaseConfigProperty: appsync.CfnDataSourcePropsMixin.RelationalDatabaseConfigProperty = {
rdsHttpEndpointConfig: {
awsRegion: 'awsRegion',
awsSecretStoreArn: 'awsSecretStoreArn',
databaseName: 'databaseName',
dbClusterIdentifier: 'dbClusterIdentifier',
schema: 'schema',
},
relationalDatabaseSourceType: 'relationalDatabaseSourceType',
};
Properties
| Name | Type | Description |
|---|---|---|
| rds | IResolvable | Rds | Information about the Amazon RDS resource. |
| relational | string | The type of relational data source. |
rdsHttpEndpointConfig?
Type:
IResolvable | Rds
(optional)
Information about the Amazon RDS resource.
relationalDatabaseSourceType?
Type:
string
(optional)
The type of relational data source.

.NET
Go
Java
Python
TypeScript