interface RdsHttpEndpointConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppSync.Mixins.CfnDataSourcePropsMixin.RdsHttpEndpointConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappsync/mixins#CfnDataSourcePropsMixin_RdsHttpEndpointConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.appsync.mixins.CfnDataSourcePropsMixin.RdsHttpEndpointConfigProperty |
Python | aws_cdk.mixins_preview.aws_appsync.mixins.CfnDataSourcePropsMixin.RdsHttpEndpointConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appsync » mixins » CfnDataSourcePropsMixin » 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 { mixins as appsync_mixins } from '@aws-cdk/mixins-preview/aws-appsync';
const rdsHttpEndpointConfigProperty: appsync_mixins.CfnDataSourcePropsMixin.RdsHttpEndpointConfigProperty = {
awsRegion: 'awsRegion',
awsSecretStoreArn: 'awsSecretStoreArn',
databaseName: 'databaseName',
dbClusterIdentifier: 'dbClusterIdentifier',
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 . |
| database | string | Logical database name. |
| db | string | Amazon RDS cluster Amazon Resource Name (ARN). |
| schema? | string | Logical schema name. |
awsRegion?
Type:
string
(optional)
AWS Region for RDS HTTP endpoint.
awsSecretStoreArn?
Type:
string
(optional)
The ARN for database credentials stored in AWS Secrets Manager .
databaseName?
Type:
string
(optional)
Logical database name.
dbClusterIdentifier?
Type:
string
(optional)
Amazon RDS cluster Amazon Resource Name (ARN).
schema?
Type:
string
(optional)
Logical schema name.

.NET
Go
Java
Python
TypeScript