Cloud
Create AWS Data Source
Create a new data source from AWS data. Returns a jobId that can be used to retrieve the status from the Get "Create AWS Data Source" Job Status endpoint.
post/v1/dataSources/aws
Request body
Example request
{
"name": "Example AWS Data Source",
"awsCredentialId": "aws_12345",
"awsAccountId": "123456789012",
"regions": [
"us-east-1",
"us-west-2"
],
"resourceSelection": [
"AWS::EC2::Instance",
"AWS::S3::Bucket"
]
}Response
Accepted. Occurs when the creation job has been queued.
Example response
{
"jobId": "jobr_2f5e5b82-6f1d-4c9f-932a-14e43cf30454"
}