interface RelationalDatabaseConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppSync.Mixins.CfnDataSourcePropsMixin.RelationalDatabaseConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappsync/mixins#CfnDataSourcePropsMixin_RelationalDatabaseConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.appsync.mixins.CfnDataSourcePropsMixin.RelationalDatabaseConfigProperty |
Python | aws_cdk.mixins_preview.aws_appsync.mixins.CfnDataSourcePropsMixin.RelationalDatabaseConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appsync » mixins » 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 { mixins as appsync_mixins } from '@aws-cdk/mixins-preview/aws-appsync';
const relationalDatabaseConfigProperty: appsync_mixins.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