Class CfnDataSource.RdsHttpEndpointConfigProperty
Use the RdsHttpEndpointConfig property type to specify the RdsHttpEndpoint for an AWS AppSync relational database.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSource.RdsHttpEndpointConfigProperty : CfnDataSource.IRdsHttpEndpointConfigProperty
Syntax (vb)
Public Class CfnDataSource.RdsHttpEndpointConfigProperty Implements CfnDataSource.IRdsHttpEndpointConfigProperty
Remarks
RdsHttpEndpointConfig is a property of the AWS AppSync DataSource RelationalDatabaseConfig resource.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppSync;
var rdsHttpEndpointConfigProperty = new RdsHttpEndpointConfigProperty {
AwsRegion = "awsRegion",
AwsSecretStoreArn = "awsSecretStoreArn",
DbClusterIdentifier = "dbClusterIdentifier",
// the properties below are optional
DatabaseName = "databaseName",
Schema = "schema"
};
Synopsis
Constructors
| RdsHttpEndpointConfigProperty() | Use the |
Properties
| AwsRegion | AWS Region for RDS HTTP endpoint. |
| AwsSecretStoreArn | The ARN for database credentials stored in AWS Secrets Manager . |
| DatabaseName | Logical database name. |
| DbClusterIdentifier | Amazon RDS cluster Amazon Resource Name (ARN). |
| Schema | Logical schema name. |
Constructors
RdsHttpEndpointConfigProperty()
Use the RdsHttpEndpointConfig property type to specify the RdsHttpEndpoint for an AWS AppSync relational database.
public RdsHttpEndpointConfigProperty()
Remarks
RdsHttpEndpointConfig is a property of the AWS AppSync DataSource RelationalDatabaseConfig resource.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppSync;
var rdsHttpEndpointConfigProperty = new RdsHttpEndpointConfigProperty {
AwsRegion = "awsRegion",
AwsSecretStoreArn = "awsSecretStoreArn",
DbClusterIdentifier = "dbClusterIdentifier",
// the properties below are optional
DatabaseName = "databaseName",
Schema = "schema"
};
Properties
AwsRegion
AWS Region for RDS HTTP endpoint.
public string AwsRegion { get; set; }
Property Value
Remarks
AwsSecretStoreArn
The ARN for database credentials stored in AWS Secrets Manager .
public string AwsSecretStoreArn { get; set; }
Property Value
Remarks
DatabaseName
Logical database name.
public string? DatabaseName { get; set; }
Property Value
Remarks
DbClusterIdentifier
Amazon RDS cluster Amazon Resource Name (ARN).
public string DbClusterIdentifier { get; set; }
Property Value
Remarks
Schema
Logical schema name.
public string? Schema { get; set; }