Cloud
Create Model from AWS Data Source
Create a new model containing the visualization of data from an AWS data source. Returns a jobId that can be used to retrieve the status from the Get "Create Model from AWS Data Source" Job Status endpoint.
post/v1/documents/cloud/aws
Request body
Example request
{
"title": "AWS Infrastructure Diagram",
"dataSources": [
{
"dataSourceId": "awsds_12345",
"filter": {
"awsTags": [
{
"key": "Environment",
"value": "Production"
}
],
"includeUntaggedResources": true,
"resourceGroups": [
"Some-AWS-Resource::Some-AWS-Server"
]
}
}
],
"autosync": true,
"viewTemplates": [
"vpc-topology",
"ecs"
]
}Response
Accepted. Occurs when the model creation job has been queued.
Example response
{
"jobId": "jobr_2f5e5b82-6f1d-4c9f-932a-14e43cf30454"
}