ConnectionConfig
This class defines connection configurations for a storage client. It encapsulates essential parameters such as the endpoint, authentication type, access and secret keys, region, and SSL settings.
Attributes
| Attribute | Type | Description |
|---|---|---|
| Endpoint | config.URL | URL for storage client to connect to. |
| AuthType | string | Auth Type to use [iam,accesskey]. |
| AccessKey | string | Access key to use. Only required when authtype is set to accesskey. |
| SecretKey | string | Secret to use when accesskey is set. |
| Region | string | Region to connect to. |
| DisableSSL | bool | Disables SSL connection. Should only be used for development. |