Show / Hide Table of Contents

Interface IDatabaseProxyAttributes

Properties that describe an existing DB Proxy.

Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDatabaseProxyAttributes
Syntax (vb)
Public Interface IDatabaseProxyAttributes
Remarks

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.EC2;
            using Amazon.CDK.AWS.RDS;

            SecurityGroup securityGroup;

            var databaseProxyAttributes = new DatabaseProxyAttributes {
                DbProxyArn = "dbProxyArn",
                DbProxyName = "dbProxyName",
                Endpoint = "endpoint",
                SecurityGroups = new [] { securityGroup }
            };

Synopsis

Properties

DbProxyArn

DB Proxy ARN.

DbProxyName

DB Proxy Name.

Endpoint

Endpoint.

SecurityGroups

The security groups of the instance.

Properties

DbProxyArn

DB Proxy ARN.

string DbProxyArn { get; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

DbProxyName

DB Proxy Name.

string DbProxyName { get; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Endpoint

Endpoint.

string Endpoint { get; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

SecurityGroups

The security groups of the instance.

ISecurityGroup[] SecurityGroups { get; }
Property Value

ISecurityGroup[]

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX