@cumulus/aws-client
Version:
Utilities for working with AWS
14 lines • 539 B
TypeScript
import { CloudFormation } from '@aws-sdk/client-cloudformation';
declare class CloudFormationGateway {
private cloudFormationService;
constructor(cloudFormationService: CloudFormation);
/**
* Get the status of a CloudFormation stack
*
* @param {string} StackName
* @returns {string} the stack status
*/
getStackStatus(StackName: string): Promise<import("@aws-sdk/client-cloudformation").StackStatus | undefined>;
}
export = CloudFormationGateway;
//# sourceMappingURL=CloudFormationGateway.d.ts.map