Show / Hide Table of Contents

Interface CfnDBInstance.IEndpointProperty

This data type represents the information you need to connect to an Amazon RDS DB instance.

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

This data type is used as a response element in the following actions:

    For the data structure that represents Amazon Aurora DB cluster endpoints, see DBClusterEndpoint .

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-endpoint.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.RDS;
    
    var endpointProperty = new EndpointProperty {
        Address = "address",
        HostedZoneId = "hostedZoneId",
        Port = "port"
    };

    Synopsis

    Properties

    Address

    Specifies the DNS address of the DB instance.

    HostedZoneId

    Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.

    Port

    Specifies the port that the database engine is listening on.

    Properties

    Address

    Specifies the DNS address of the DB instance.

    virtual string Address { get; }
    Property Value

    System.String

    Remarks

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-endpoint.html#cfn-rds-dbinstance-endpoint-address

    HostedZoneId

    Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.

    virtual string HostedZoneId { get; }
    Property Value

    System.String

    Remarks

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-endpoint.html#cfn-rds-dbinstance-endpoint-hostedzoneid

    Port

    Specifies the port that the database engine is listening on.

    virtual string Port { get; }
    Property Value

    System.String

    Remarks

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-endpoint.html#cfn-rds-dbinstance-endpoint-port

    Back to top Generated by DocFX