UNPKG

@altostra/core

Version:

Core library for shared types and logic

13 lines (12 loc) 447 B
import type { AwsResourceCommon } from "../common"; import type { CloudFormationValue } from "../IntrinsicFunctions"; export declare type DeploymentType = 'AWS::ApiGatewayV2::Deployment'; export interface Deployment extends AwsResourceCommon { Type: DeploymentType; Properties: DeploymentProperties; } export interface DeploymentProperties { ApiId: CloudFormationValue; Description?: string; StageName?: CloudFormationValue; }