Retrieve configurations
GET/api/v1/aws/configurations
Retrieve configurations
Responses
- 200
- 429
Successfully found configurations
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
configurations
object[]
required
accountId stringrequired
The account ID for the AWS account
accountName string
The account alias for the AWS account
role stringrequired
The IAM role Cortex would be assuming
{
"configurations": [
{
"accountId": "string",
"accountName": "string",
"role": "string"
}
]
}
The client has exceeded the rate limit by performing too many requests in a short period. Retry the request after a delay.
Response Headers
Retry-After
integer
The number of seconds until the rate limiting resets.
- application/problem+json
- Schema
- Example (from schema)
Schema
detail string
instance uri-reference
retryAfter int32
The number of seconds until the rate limiting resets.
status int32required
Possible values: >= 100
and <= 599
, [429
]
title stringrequired
type uri-referencerequired
{
"detail": "string",
"instance": "string",
"retryAfter": 0,
"status": 429,
"title": "string",
"type": "string"
}
Loading...