Show / Hide Table of Contents

Class CfnDataSource.RdsHttpEndpointConfigProperty

Use the RdsHttpEndpointConfig property type to specify the RdsHttpEndpoint for an AWS AppSync relational database.

Inheritance
object
CfnDataSource.RdsHttpEndpointConfigProperty
Implements
CfnDataSource.IRdsHttpEndpointConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.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 rdsHttpEndpointConfigProperty = new RdsHttpEndpointConfigProperty {
                 AwsRegion = "awsRegion",
                 AwsSecretStoreArn = "awsSecretStoreArn",
                 DbClusterIdentifier = "dbClusterIdentifier",

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

Synopsis

Constructors

RdsHttpEndpointConfigProperty()

Use the RdsHttpEndpointConfig property type to specify the RdsHttpEndpoint for an AWS AppSync relational database.

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.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 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

string

Remarks

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

AwsSecretStoreArn

The ARN for database credentials stored in AWS Secrets Manager .

public string AwsSecretStoreArn { get; set; }
Property Value

string

Remarks

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

DatabaseName

Logical database name.

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

string

Remarks

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

DbClusterIdentifier

Amazon RDS cluster Amazon Resource Name (ARN).

public string DbClusterIdentifier { get; set; }
Property Value

string

Remarks

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

Schema

Logical schema name.

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

string

Remarks

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

Implements

CfnDataSource.IRdsHttpEndpointConfigProperty
Back to top Generated by DocFX