# DatabaseEndpoint Object

## Description

Endpoint parameters to connect to a database server.

## Properties

### endpoint

Connection endpoint for the database server.

Type: `string`

Required: Yes

### password

Password to use when authenticating with the database server.

Type: `string`

Required: Conditional

### port

Connection port for the database server.

Type: `integer`

Required: Yes

### username

Username with which to authenticate with the database server

Type: `string`

Required: Yes

## Sample JSON

```javascript
{
    "endpoint": "my-instance.example.com",
    "port": 3306,
    "username": "user1",
    "password": "123456789012"
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.skeddly.com/data-types/databaseendpoint-object.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
