mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
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:
parent
48de15f5ed
commit
1e47cb4c01
@ -530,6 +530,7 @@ strOrUndefined = cloudformationCustomResourceResponse.Reason;
|
||||
str = cloudformationCustomResourceResponse.RequestId;
|
||||
str = cloudformationCustomResourceResponse.StackId;
|
||||
str = cloudformationCustomResourceResponse.Status;
|
||||
boolOrUndefined = cloudformationCustomResourceResponse.NoEcho;
|
||||
|
||||
/* ScheduledEvent */
|
||||
str = scheduledEvent.account;
|
||||
|
||||
1
types/aws-lambda/index.d.ts
vendored
1
types/aws-lambda/index.d.ts
vendored
@ -383,6 +383,7 @@ export interface CloudFormationCustomResourceResponseCommon {
|
||||
Data?: {
|
||||
[Key: string]: any;
|
||||
};
|
||||
NoEcho?: boolean;
|
||||
}
|
||||
|
||||
export interface CloudFormationCustomResourceSuccessResponse extends CloudFormationCustomResourceResponseCommon {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user