aws-lambda: Added NoEcho parameter for CloudFormation Custom Resource Response (#38519)

According to https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/crpg-ref-responses.html
This commit is contained in:
Florin Asăvoaie 2019-09-23 20:18:32 +03:00 committed by Ben Lichtman
parent 48de15f5ed
commit 1e47cb4c01
2 changed files with 2 additions and 0 deletions

View File

@ -530,6 +530,7 @@ strOrUndefined = cloudformationCustomResourceResponse.Reason;
str = cloudformationCustomResourceResponse.RequestId;
str = cloudformationCustomResourceResponse.StackId;
str = cloudformationCustomResourceResponse.Status;
boolOrUndefined = cloudformationCustomResourceResponse.NoEcho;
/* ScheduledEvent */
str = scheduledEvent.account;

View File

@ -383,6 +383,7 @@ export interface CloudFormationCustomResourceResponseCommon {
Data?: {
[Key: string]: any;
};
NoEcho?: boolean;
}
export interface CloudFormationCustomResourceSuccessResponse extends CloudFormationCustomResourceResponseCommon {