Show / Hide Table of Contents

Class DatabaseProxyEndpointAttributes

Properties that describe an existing DB Proxy Endpoint.

Inheritance
object
DatabaseProxyEndpointAttributes
Implements
IDatabaseProxyEndpointAttributes
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 DatabaseProxyEndpointAttributes : IDatabaseProxyEndpointAttributes
Syntax (vb)
Public Class DatabaseProxyEndpointAttributes Implements IDatabaseProxyEndpointAttributes
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.RDS;

            var databaseProxyEndpointAttributes = new DatabaseProxyEndpointAttributes {
                DbProxyEndpointArn = "dbProxyEndpointArn",
                DbProxyEndpointName = "dbProxyEndpointName",
                Endpoint = "endpoint"
            };

Synopsis

Constructors

DatabaseProxyEndpointAttributes()

Properties that describe an existing DB Proxy Endpoint.

Properties

DbProxyEndpointArn

DB Proxy Endpoint ARN.

DbProxyEndpointName

DB Proxy Endpoint Name.

Endpoint

The endpoint that you can use to connect to the DB proxy.

Constructors

DatabaseProxyEndpointAttributes()

Properties that describe an existing DB Proxy Endpoint.

public DatabaseProxyEndpointAttributes()
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.RDS;

            var databaseProxyEndpointAttributes = new DatabaseProxyEndpointAttributes {
                DbProxyEndpointArn = "dbProxyEndpointArn",
                DbProxyEndpointName = "dbProxyEndpointName",
                Endpoint = "endpoint"
            };

Properties

DbProxyEndpointArn

DB Proxy Endpoint ARN.

public string DbProxyEndpointArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

DbProxyEndpointName

DB Proxy Endpoint Name.

public string DbProxyEndpointName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Endpoint

The endpoint that you can use to connect to the DB proxy.

public string Endpoint { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IDatabaseProxyEndpointAttributes
Back to top Generated by DocFX