Cloud
Update AWS Data Source
Update an existing AWS data source to reflect the latest state of data in AWS. Optionally updates the resources and regions included in the data source as well. Returns a jobId that can be used to check the status via the Get "Update AWS Data Source" Job Status endpoint.
post/v1/dataSources/aws/{awsDataSourceId}
Path parameters
awsDataSourceIdstring required
AWS data source ID
Example:awsds_12345
The ID of the AWS data source to update
Request body
Example request
{
"regions": [
"us-east-1",
"us-west-2"
],
"resourceSelection": [
"AWS::EC2::Instance",
"AWS::S3::Bucket"
]
}Response
Accepted. Occurs when the update job has been queued.
Example response
{
"jobId": "jobr_2f5e5b82-6f1d-4c9f-932a-14e43cf30454"
}