interface RdsHttpEndpointConfigProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppSync.CfnDataSource.RdsHttpEndpointConfigProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsappsync#CfnDataSource_RdsHttpEndpointConfigProperty |
![]() | software.amazon.awscdk.services.appsync.CfnDataSource.RdsHttpEndpointConfigProperty |
![]() | aws_cdk.aws_appsync.CfnDataSource.RdsHttpEndpointConfigProperty |
![]() | aws-cdk-lib » 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 { aws_appsync as appsync } from 'aws-cdk-lib';
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.