Show / Hide Table of Contents

Interface CfnDataSource.IRelationalDatabaseConfigProperty

Use the RelationalDatabaseConfig property type to specify RelationalDatabaseConfig for an AWS AppSync data source.

Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDataSource.IRelationalDatabaseConfigProperty
Syntax (vb)
Public Interface CfnDataSource.IRelationalDatabaseConfigProperty
Remarks

RelationalDatabaseConfig is a property of the AWS::AppSync::DataSource property type.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-relationaldatabaseconfig.html

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 relationalDatabaseConfigProperty = new RelationalDatabaseConfigProperty {
                 RelationalDatabaseSourceType = "relationalDatabaseSourceType",

                 // the properties below are optional
                 RdsHttpEndpointConfig = new RdsHttpEndpointConfigProperty {
                     AwsRegion = "awsRegion",
                     AwsSecretStoreArn = "awsSecretStoreArn",
                     DbClusterIdentifier = "dbClusterIdentifier",

                     // the properties below are optional
                     DatabaseName = "databaseName",
                     Schema = "schema"
                 }
             };

Synopsis

Properties

RdsHttpEndpointConfig

Information about the Amazon RDS resource.

RelationalDatabaseSourceType

The type of relational data source.

Properties

RdsHttpEndpointConfig

Information about the Amazon RDS resource.

object? RdsHttpEndpointConfig { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-relationaldatabaseconfig.html#cfn-appsync-datasource-relationaldatabaseconfig-rdshttpendpointconfig

Type union: either IResolvable or CfnDataSource.IRdsHttpEndpointConfigProperty

RelationalDatabaseSourceType

The type of relational data source.

string RelationalDatabaseSourceType { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-relationaldatabaseconfig.html#cfn-appsync-datasource-relationaldatabaseconfig-relationaldatabasesourcetype

Back to top Generated by DocFX