v1

latestOpenAPI 3.0.3Lucid2026-07-14155181312.3 KB
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

regionsstring[]

The AWS regions which contain the data from which to update the data source. Use the "Get Supported AWS Regions" endpoint to see a list of all supported regions.

resourceSelectionstring[]

The AWS resources to include in the data source. Use the "Get Fully Supported AWS Resources" endpoint to see a list of all supported resources.

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.

jobIdstring required

Unique identifier for an asynchronous job

Example response

{
  "jobId": "jobr_2f5e5b82-6f1d-4c9f-932a-14e43cf30454"
}