@aws-lite/cloudformation-types 0.0.3 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +14 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ declare interface AwsLiteCloudFormation {
|
|
|
18
18
|
* - AWS docs: {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateStack.html CloudFormation: CreateStack}
|
|
19
19
|
* - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/cloudformation/readme.md#CreateStack CloudFormation: CreateStack}
|
|
20
20
|
*/
|
|
21
|
-
CreateStack: (input: { StackName: string, Capabilities?: any[], ClientRequestToken?: string, DisableRollback?: boolean, EnableTerminationProtection?: boolean, NotificationARNs?: any[], OnFailure?: string, Parameters?: any[], ResourceTypes?: any[], RetainExceptOnCreate?: boolean, RoleARN?: string, RollbackConfiguration?: Record<string, any>, StackPolicyBody?: string,
|
|
21
|
+
CreateStack: (input: { StackName: string, Capabilities?: any[], ClientRequestToken?: string, DisableRollback?: boolean, EnableTerminationProtection?: boolean, NotificationARNs?: any[], OnFailure?: string, Parameters?: any[], ResourceTypes?: any[], RetainExceptOnCreate?: boolean, RoleARN?: string, RollbackConfiguration?: Record<string, any>, StackPolicyBody?: string | Record<string, any>, StackPolicyURL?: string, Tags?: any[], TemplateBody?: string | Record<string, any>, TemplateURL?: string, TimeoutInMinutes?: number }) => Promise<CreateStackResponse>
|
|
22
22
|
/**
|
|
23
23
|
* @description
|
|
24
24
|
* - AWS docs: {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeleteStack.html CloudFormation: DeleteStack}
|
|
@@ -48,7 +48,7 @@ declare interface AwsLiteCloudFormation {
|
|
|
48
48
|
* - AWS docs: {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStack.html CloudFormation: UpdateStack}
|
|
49
49
|
* - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/cloudformation/readme.md#UpdateStack CloudFormation: UpdateStack}
|
|
50
50
|
*/
|
|
51
|
-
UpdateStack: (input: { StackName: string, Capabilities?: any[], ClientRequestToken?: string, DisableRollback?: boolean, NotificationARNs?: any[], Parameters?: any[], ResourceTypes?: any[], RetainExceptOnCreate?: boolean, RoleARN?: string, RollbackConfiguration?: Record<string, any>, StackPolicyBody?: string,
|
|
51
|
+
UpdateStack: (input: { StackName: string, Capabilities?: any[], ClientRequestToken?: string, DisableRollback?: boolean, NotificationARNs?: any[], Parameters?: any[], ResourceTypes?: any[], RetainExceptOnCreate?: boolean, RoleARN?: string, RollbackConfiguration?: Record<string, any>, StackPolicyBody?: string | Record<string, any>, StackPolicyURL?: string, Tags?: any[], TemplateBody?: string | Record<string, any>, TemplateURL?: string }) => Promise<UpdateStackResponse>
|
|
52
52
|
// $METHODS_END
|
|
53
53
|
}
|
|
54
54
|
|
|
@@ -57,3 +57,15 @@ declare module "@aws-lite/client" {
|
|
|
57
57
|
CloudFormation: AwsLiteCloudFormation;
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
|
+
|
|
61
|
+
export type {
|
|
62
|
+
/* ! Do not remove EXPORT_START / EXPORT_END ! */
|
|
63
|
+
// $EXPORT_START
|
|
64
|
+
CreateStackResponse,
|
|
65
|
+
DeleteStackResponse,
|
|
66
|
+
DescribeStackResourcesResponse,
|
|
67
|
+
DescribeStacksResponse,
|
|
68
|
+
ListStackResourcesResponse,
|
|
69
|
+
UpdateStackResponse,
|
|
70
|
+
// $EXPORT_END
|
|
71
|
+
}
|
package/package.json
CHANGED