Class CfnDataSourcePropsMixin.RelationalDatabaseConfigProperty
Use the RelationalDatabaseConfig property type to specify RelationalDatabaseConfig for an AWS AppSync data source.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.AppSync.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataSourcePropsMixin.RelationalDatabaseConfigProperty : CfnDataSourcePropsMixin.IRelationalDatabaseConfigProperty
Syntax (vb)
Public Class CfnDataSourcePropsMixin.RelationalDatabaseConfigProperty Implements CfnDataSourcePropsMixin.IRelationalDatabaseConfigProperty
Remarks
RelationalDatabaseConfig is a property of the AWS::AppSync::DataSource property type.
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.Mixins.Preview.AWS.AppSync.Mixins;
var relationalDatabaseConfigProperty = new RelationalDatabaseConfigProperty {
RdsHttpEndpointConfig = new RdsHttpEndpointConfigProperty {
AwsRegion = "awsRegion",
AwsSecretStoreArn = "awsSecretStoreArn",
DatabaseName = "databaseName",
DbClusterIdentifier = "dbClusterIdentifier",
Schema = "schema"
},
RelationalDatabaseSourceType = "relationalDatabaseSourceType"
};
Synopsis
Constructors
| RelationalDatabaseConfigProperty() | Use the |
Properties
| RdsHttpEndpointConfig | Information about the Amazon RDS resource. |
| RelationalDatabaseSourceType | The type of relational data source. |
Constructors
RelationalDatabaseConfigProperty()
Use the RelationalDatabaseConfig property type to specify RelationalDatabaseConfig for an AWS AppSync data source.
public RelationalDatabaseConfigProperty()
Remarks
RelationalDatabaseConfig is a property of the AWS::AppSync::DataSource property type.
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.Mixins.Preview.AWS.AppSync.Mixins;
var relationalDatabaseConfigProperty = new RelationalDatabaseConfigProperty {
RdsHttpEndpointConfig = new RdsHttpEndpointConfigProperty {
AwsRegion = "awsRegion",
AwsSecretStoreArn = "awsSecretStoreArn",
DatabaseName = "databaseName",
DbClusterIdentifier = "dbClusterIdentifier",
Schema = "schema"
},
RelationalDatabaseSourceType = "relationalDatabaseSourceType"
};
Properties
RdsHttpEndpointConfig
Information about the Amazon RDS resource.
public object? RdsHttpEndpointConfig { get; set; }
Property Value
Remarks
RelationalDatabaseSourceType
The type of relational data source.
public string? RelationalDatabaseSourceType { get; set; }