UNPKG

@altostra/core

Version:

Core library for shared types and logic

15 lines (14 loc) 559 B
import type { AwsResourceCommon } from "../common"; import type { CloudFormationValue } from "../IntrinsicFunctions"; import type { ProvisionedConcurrencyConfiguration } from "./common"; export declare type VersionType = 'AWS::Lambda::Version'; export interface Version extends AwsResourceCommon { Type: VersionType; Properties: VersionProperties; } export interface VersionProperties { CodeSha256?: string; Description?: string; FunctionName: CloudFormationValue; ProvisionedConcurrencyConfig?: ProvisionedConcurrencyConfiguration; }