## Example
The following JSON is an example for this configuration component, with standardized configuration component contents replaced by "...":
```json
{ "ApiServer": "https://cloud-api.invantive.com"
, "Cognito": ...
}
```
## Definition
References are made to other configuration components :
- [[AWS Cognito Configuration]]
```json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "CloudApiConfigModel.schema.json",
"title": "CloudApiConfigModel",
"description": "Invantive Cloud API connection configuration.",
"type": "object",
"additionalProperties": false,
"properties": {
"ApiServer": {
"type": [
"string",
"null"
],
"description": "The Invantive Cloud API server URL."
},
"Cognito": {
"anyOf": [
{
"$ref": "CognitoConfig.schema.json"
},
{
"type": "null"
}
],
"description": "The AWS Cognito configuration."
}
}
}
```