From 3f1817be1603c702532504a77309b67a7e99be66 Mon Sep 17 00:00:00 2001 From: Sam Goodwin Date: Sun, 10 Mar 2019 07:09:08 -0700 Subject: [PATCH] fix(schema): fixed incorrect field type for AWS::Serverless::Application.Location (#167) --- generate/sam-2016-10-31.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/generate/sam-2016-10-31.json b/generate/sam-2016-10-31.json index 97def62583..f233be9457 100644 --- a/generate/sam-2016-10-31.json +++ b/generate/sam-2016-10-31.json @@ -236,8 +236,8 @@ "Location": { "Documentation": "https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessapplication", "Required": true, - "PrimitiveType": "String", - "Types": ["ApplicationLocation"], + "PrimitiveTypes": [ "String" ], + "Types": [ "ApplicationLocation" ], "UpdateType": "Immutable" }, "Parameters": { @@ -803,4 +803,4 @@ } } } -} \ No newline at end of file +}