interface RdsHttpEndpointConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppSync.CfnDataSource.RdsHttpEndpointConfigProperty |
Java | software.amazon.awscdk.services.appsync.CfnDataSource.RdsHttpEndpointConfigProperty |
Python | aws_cdk.aws_appsync.CfnDataSource.RdsHttpEndpointConfigProperty |
TypeScript | @aws-cdk/aws-appsync » CfnDataSource » RdsHttpEndpointConfigProperty |
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 * as appsync from '@aws-cdk/aws-appsync';
const rdsHttpEndpointConfigProperty: appsync.CfnDataSource.RdsHttpEndpointConfigProperty = {
awsRegion: 'awsRegion',
awsSecretStoreArn: 'awsSecretStoreArn',
dbClusterIdentifier: 'dbClusterIdentifier',
// the properties below are optional
databaseName: 'databaseName',
schema: 'schema',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | AWS Region for RDS HTTP endpoint. |
| aws | string | The ARN for database credentials stored in AWS Secrets Manager . |
| db | string | Amazon RDS cluster Amazon Resource Name (ARN). |
| database | string | Logical database name. |
| schema? | string | Logical schema name. |
awsRegion
Type:
string
AWS Region for RDS HTTP endpoint.
awsSecretStoreArn
Type:
string
The ARN for database credentials stored in AWS Secrets Manager .
dbClusterIdentifier
Type:
string
Amazon RDS cluster Amazon Resource Name (ARN).
databaseName?
Type:
string
(optional)
Logical database name.
schema?
Type:
string
(optional)
Logical schema name.

.NET
Java
Python
TypeScript