Lists all AWS supported services available in your environment.
The request produces an application/json
payload.
GET | SaaS | https://{your-environment-id}.live.dynatrace.com/api/config/v1/aws/supportedServices |
Environment ActiveGate | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/config/v1/aws/supportedServices |
To execute this request, you need an access token with ReadConfig
scope.
To learn how to obtain and use it, see Tokens and authentication.
The request doesn't provide any configurable parameters.
CloudSupportedServicesList
objectA supported services metadata list
CloudSupportedService
objectA supported service metadata
Name of service used by cloud provider.
Display name for service on Dynatrace UI
Entity type monitored by this service
Service unique name used by Dynatrace.
{"services": [{"cloudProviderServiceType": "string","displayName": "string","entityType": "string","name": "string"}]}
In this example, the request lists AWS supported services available for mySampleEnv environment. The result is truncated to three entries.
The API token is passed in the Authorization header.
curl --request GET \--url https://mySampleEnv.live.dynatrace.com/api/config/v1/aws/supportedServices \--header 'Authorization: Api-Token dt0c01.abc123.abcdefjhij1234567890'
https://mySampleEnv.live.dynatrace.com/api/config/v1/aws/supportedServices
{"services": [{"cloudProviderServiceType": "AWS/ApiGateway","name": "APIGateway","entityType": "cloud:aws:api_gateway","displayName": "Amazon API Gateway"},{"cloudProviderServiceType": "AWS/RDS","name": "Aurora","entityType": "cloud:aws:aurora","displayName": "Amazon Aurora"},{"cloudProviderServiceType": "AWS/Neptune","name": "neptune","entityType": "cloud:aws:neptune","displayName": "Amazon Neptune"}]}
200