package awsrds // The `Endpoint` return value specifies the connection endpoint for the primary instance of the DB cluster. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // endpointProperty := &EndpointProperty{ // Address: jsii.String("address"), // Port: jsii.String("port"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-endpoint.html // type CfnDBCluster_EndpointProperty struct { // Specifies the connection endpoint for the primary instance of the DB cluster. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-endpoint.html#cfn-rds-dbcluster-endpoint-address // Address *string `field:"optional" json:"address" yaml:"address"` // Specifies the port that the database engine is listening on. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-endpoint.html#cfn-rds-dbcluster-endpoint-port // Port *string `field:"optional" json:"port" yaml:"port"` }