/** * @module CloudFormation */ /** * Describes a given CloudFormation stack * * See [CloudFormation.Stack](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/CloudFormation.html#describeStacks-property) * * @param {string} StackName - The name of the CloudFormation stack to query * @returns {Promise} The resources belonging to the stack */ export declare const describeCfStack: (StackName: string) => Promise; /** * Describes the resources belonging to a given CloudFormation stack * * See [CloudFormation.StackResources](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/CloudFormation.html#describeStackResources-property) * * @param {string} StackName - The name of the CloudFormation stack to query * @returns {Promise} The resources belonging to the stack */ export declare const describeCfStackResources: (StackName: string) => Promise; /** * Get parameter values for the given CloudFormation stack * * @param {string} stackName - The name of the CloudFormation stack to query * @param {Array} parameterKeys - Key names for the stack parameters that you want to return * @returns {Promise} Object keyed by parameter names */ export declare const getCfStackParameterValues: (stackName: string, parameterKeys: string[]) => Promise<{ [key: string]: string; }>; //# sourceMappingURL=CloudFormation.d.ts.map