Definitions for @turbot/aws-appflow
appFlow
Schema
{ "allOf": [ { "$ref": "turbot#/definitions/service" }, { "type": "object", "properties": { "name": { "const": "AppFlow" }, "turbot": { "type": "object", "properties": { "akas": { "type": "array", "items": { "$ref": "#/definitions/appFlowAka" } }, "title": { "const": "AppFlow" }, "custom": { "type": "object", "properties": { "aws": { "$ref": "aws#/definitions/awsMetadata" } } } } } }, "additionalProperties": true, "tests": [ { "description": "All data are valid", "input": { "name": "AppFlow", "turbot": { "akas": [ "arn:aws:appflow:us-east-1:123123123123" ], "title": "AppFlow", "custom": { "aws": { "accountId": 123456789012 } } } } }, { "description": "invalid - missing turbot data", "input": { "name": "AppFlow" }, "expected": false } ] } ], ".turbot": { "uri": "tmod:@turbot/aws-appflow#/definitions/appFlow", "modUri": "tmod:@turbot/aws-appflow" }}
appFlowAka
Schema
{ "type": "string", "pattern": "^arn:aws(-us-gov|-cn)?:appflow:[a-z]{2}(-gov)?-[a-z]+-[0-9]{1}:[0-9]{12}$", "tests": [ { "description": "base", "input": "arn:aws:appflow:us-east-1:123123123123" }, { "description": "invalid service name", "input": "arn:aws:appflows:us-east-1:123123123123", "expected": false }, { "description": "invalid region name", "input": "arn:aws:appflow:us-eastdk-74381:123456786354", "expected": false }, { "description": "invalid partition", "input": "arn:us-cn:appflow:us-eastdk-74381:123456786354", "expected": false } ], ".turbot": { "uri": "tmod:@turbot/aws-appflow#/definitions/appFlowAka", "modUri": "tmod:@turbot/aws-appflow" }}