Definitions for @turbot/aws-globalaccelerator
globalAccelerator
Schema
{ "allOf": [ { "$ref": "turbot#/definitions/service" }, { "type": "object", "properties": { "name": { "const": "Global Accelerator" }, "turbot": { "type": "object", "properties": { "akas": { "type": "array", "items": { "$ref": "#/definitions/globalAcceleratorAka" } }, "title": { "const": "Global Accelerator" }, "custom": { "type": "object", "properties": { "aws": { "$ref": "aws#/definitions/awsMetadata" } } } } } }, "additionalProperties": true, "tests": [ { "description": "Valid - All properties", "input": { "name": "Global Accelerator", "turbot": { "akas": [ "arn:aws:globalaccelerator::123456789012" ], "title": "Global Accelerator", "custom": { "aws": { "accountId": 123456789012, "partition": "aws" } } } } } ] } ], ".turbot": { "uri": "tmod:@turbot/aws-globalaccelerator#/definitions/globalAccelerator", "modUri": "tmod:@turbot/aws-globalaccelerator" }}
globalAcceleratorAka
Schema
{ "type": "string", "pattern": "^arn:aws(-us-gov|-cn)?:globalaccelerator::[0-9]{12}$", "tests": [ { "description": "Base", "input": "arn:aws:globalaccelerator::123456789012" }, { "description": "Invalid service name", "input": "arn:aws:amplifye::123456789012", "expected": false } ], ".turbot": { "uri": "tmod:@turbot/aws-globalaccelerator#/definitions/globalAcceleratorAka", "modUri": "tmod:@turbot/aws-globalaccelerator" }}