Show / Hide Table of Contents

Class CfnDataSource.RelationalDatabaseConfigProperty

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

Inheritance
System.Object
CfnDataSource.RelationalDatabaseConfigProperty
Implements
CfnDataSource.IRelationalDatabaseConfigProperty
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.AWS.AppSync.dll
Syntax (csharp)
public class RelationalDatabaseConfigProperty : Object, CfnDataSource.IRelationalDatabaseConfigProperty
Syntax (vb)
Public Class RelationalDatabaseConfigProperty
    Inherits Object
    Implements CfnDataSource.IRelationalDatabaseConfigProperty
Remarks

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

Link: 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

Constructors

RelationalDatabaseConfigProperty()

Properties

RdsHttpEndpointConfig

Information about the Amazon RDS resource.

RelationalDatabaseSourceType

The type of relational data source.

Constructors

RelationalDatabaseConfigProperty()

public RelationalDatabaseConfigProperty()

Properties

RdsHttpEndpointConfig

Information about the Amazon RDS resource.

public object RdsHttpEndpointConfig { get; set; }
Property Value

System.Object

Remarks

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

RelationalDatabaseSourceType

The type of relational data source.

public string RelationalDatabaseSourceType { get; set; }
Property Value

System.String

Remarks

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

Implements

CfnDataSource.IRelationalDatabaseConfigProperty
Back to top Generated by DocFX