UNPKG

@altostra/core

Version:

Core library for shared types and logic

9 lines (8 loc) 391 B
import type { CloudFormationValue } from "./common"; export declare const FN_GET_AZS = "Fn::GetAZs"; export declare type GetAZsKey = typeof FN_GET_AZS; export interface GetAZs { 'Fn::GetAZs': CloudFormationValue; } export declare const isGetAZs: import("@altostra/type-validations").ObjectOfTypeValidation<GetAZs>; export declare function mkGetAZs(region?: CloudFormationValue): GetAZs;