1
0
mirror of synced 2026-01-25 10:01:49 -05:00
Files
airbyte/airbyte-integrations/connectors/source-aws-cloudtrail/source_aws_cloudtrail/spec.json
Arsen Losenko be9a59cef4 Source AWS Cloudtrail: Mark datefields in spec as dates (#23083)
* Source AWS Cloudtrail: Mark datefields in spec as dates

* Update changelog

* auto-bump connector version

---------

Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
2023-02-28 19:23:00 +02:00

44 lines
1.7 KiB
JSON

{
"documentationUrl": "https://docs.airbyte.com/integrations/sources/aws-cloudtrail",
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Aws CloudTrail Spec",
"type": "object",
"required": [
"aws_key_id",
"aws_secret_key",
"aws_region_name",
"start_date"
],
"additionalProperties": true,
"properties": {
"aws_key_id": {
"type": "string",
"title": "Key ID",
"description": "AWS CloudTrail Access Key ID. See the <a href=\"https://docs.airbyte.com/integrations/sources/aws-cloudtrail\">docs</a> for more information on how to obtain this key.",
"airbyte_secret": true
},
"aws_secret_key": {
"type": "string",
"title": "Secret Key",
"description": "AWS CloudTrail Access Key ID. See the <a href=\"https://docs.airbyte.com/integrations/sources/aws-cloudtrail\">docs</a> for more information on how to obtain this key.",
"airbyte_secret": true
},
"aws_region_name": {
"type": "string",
"title": "Region Name",
"description": "The default AWS Region to use, for example, us-west-1 or us-west-2. When specifying a Region inline during client initialization, this property is named region_name."
},
"start_date": {
"type": "string",
"title": "Start Date",
"description": "The date you would like to replicate data. Data in AWS CloudTrail is available for last 90 days only. Format: YYYY-MM-DD.",
"examples": ["2021-01-01"],
"default": "1970-01-01",
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
"format": "date"
}
}
}
}