Show / Hide Table of Contents

Class DatabaseProxyAttributes

Properties that describe an existing DB Proxy.

Inheritance
object
DatabaseProxyAttributes
Implements
IDatabaseProxyAttributes
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.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DatabaseProxyAttributes : IDatabaseProxyAttributes
Syntax (vb)
Public Class DatabaseProxyAttributes Implements 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

Constructors

DatabaseProxyAttributes()

Properties that describe an existing DB Proxy.

Properties

DbProxyArn

DB Proxy ARN.

DbProxyName

DB Proxy Name.

Endpoint

Endpoint.

SecurityGroups

The security groups of the instance.

Constructors

DatabaseProxyAttributes()

Properties that describe an existing DB Proxy.

public DatabaseProxyAttributes()
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 }
            };

Properties

DbProxyArn

DB Proxy ARN.

public string DbProxyArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

DbProxyName

DB Proxy Name.

public string DbProxyName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Endpoint

Endpoint.

public string Endpoint { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

SecurityGroups

The security groups of the instance.

public ISecurityGroup[] SecurityGroups { get; set; }
Property Value

ISecurityGroup[]

Remarks

ExampleMetadata: fixture=_generated

Implements

IDatabaseProxyAttributes
Back to top Generated by DocFX