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
object
CfnDBInstance.EndpointProperty
Implements
CfnDBInstance.IEndpointProperty
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 CfnDBInstance.EndpointProperty : CfnDBInstance.IEndpointProperty
Syntax (vb)
Public Class CfnDBInstance.EndpointProperty 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 .

    See: 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()

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

    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()

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

    public EndpointProperty()
    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 .

      See: 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"
                   };

      Properties

      Address

      Specifies the DNS address of the DB instance.

      public string? Address { get; set; }
      Property Value

      string

      Remarks

      See: 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

      string

      Remarks

      See: 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

      string

      Remarks

      See: 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