From d9a737331c85b4dfc50436083efc7e026da26d96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Podeszwa?= Date: Wed, 2 Nov 2016 19:12:39 +0100 Subject: [PATCH] Change StackPolicyBody and StackPolicyUrl to accept string instead of array of strings --- aws-sdk/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aws-sdk/index.d.ts b/aws-sdk/index.d.ts index 7d70edf939..01615fc4cd 100644 --- a/aws-sdk/index.d.ts +++ b/aws-sdk/index.d.ts @@ -616,8 +616,8 @@ export module CloudFormation { ResourceTypes?: string[]; OnFailure?: string[]; // cannot specify both DisableRollback and OnFailure // DO_NOTHING | ROLLBACK | DELETE - StackPolicyBody?: string[]; // cannot specify both StackPolicyBody and StackPolicyURL - StackPolicyURL?: string[]; // cannot specify both StackPolicyBody and StackPolicyURL + StackPolicyBody?: string; // cannot specify both StackPolicyBody and StackPolicyURL + StackPolicyURL?: string; // cannot specify both StackPolicyBody and StackPolicyURL Tags?: CloudFormation.Tag[]; }