APIs for creating, deleting, and retrieving the AWS connectors.
DECOMMISSION NOTICE
On Monday, August 7 2023 12:00:00 CST, the Create/Delete/List AWS Connector APIs will no longer be operable.
AWS Connector APIs are replaced by Trend Micro Cloud One™ - AWS Cloud Account management APIs.
List aws connectorsDeprecated
get/awsconnectors
SecurityTrend Micro Cloud One API Key
Request
Responses
200
OK
401
Unauthorized
403
Forbidden
404
Not Found
500
Internal Server Error
Response samples
- 200
application/json
{- "totalCount": 0,
- "next": "string",
- "crossAccountRoles": [
- {
- "id": 0,
- "accountId": "string",
- "accountName": "string",
- "crossAccountRole": "string",
- "externalId": "string"
}
]
}
Create new aws connectorDeprecated
post/awsconnectors
SecurityTrend Micro Cloud One API Key
Request
Request Body schema: application/json
Responses
200
OK
201
Created
401
Unauthorized
403
Forbidden
404
Not Found
500
Internal Server Error
Request samples
- Payload
application/json
{- "accountName": "string",
- "crossAccountRole": "string",
- "externalId": "string"
}
Response samples
- 200
application/json
{- "id": 0,
- "accountId": "string",
- "accountName": "string",
- "crossAccountRole": "string",
- "externalId": "string"
}