Show / Hide Table of Contents

Class CfnDBInstance.EndpointProperty

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

Inheritance
System.Object
CfnDBInstance.EndpointProperty
Implements
CfnDBInstance.IEndpointProperty
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.AWS.RDS.dll
Syntax (csharp)
public class EndpointProperty : Object, CfnDBInstance.IEndpointProperty
Syntax (vb)
Public Class EndpointProperty
    Inherits Object
    Implements CfnDBInstance.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

    Constructors

    EndpointProperty()

    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.

    Constructors

    EndpointProperty()

    public EndpointProperty()

    Properties

    Address

    Specifies the DNS address of the DB instance.

    public string Address { get; set; }
    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.

    public string HostedZoneId { get; set; }
    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.

    public string Port { get; set; }
    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

    Implements

    CfnDBInstance.IEndpointProperty
    Back to top Generated by DocFX