Show / Hide Table of Contents

Class CfnDataSourcePropsMixin.RelationalDatabaseConfigProperty

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

Inheritance
object
CfnDataSourcePropsMixin.RelationalDatabaseConfigProperty
Implements
CfnDataSourcePropsMixin.IRelationalDatabaseConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

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.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 RelationalDatabaseConfig property type to specify RelationalDatabaseConfig for an AWS AppSync data source.

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.

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.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

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 CfnDataSourcePropsMixin.IRdsHttpEndpointConfigProperty

RelationalDatabaseSourceType

The type of relational data source.

public string? RelationalDatabaseSourceType { get; set; }
Property Value

string

Remarks

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

Implements

CfnDataSourcePropsMixin.IRelationalDatabaseConfigProperty
Back to top Generated by DocFX