UNPKG

@altostra/core

Version:

Core library for shared types and logic

13 lines (12 loc) 464 B
import type { AwsResourceCommon } from "../common"; import type { CloudFormationString } from "../IntrinsicFunctions"; export declare type BasePathMappingType = 'AWS::ApiGateway::BasePathMapping'; export interface BasePathMapping extends AwsResourceCommon { Type: BasePathMappingType; Properties: { BasePath?: string; DomainName: CloudFormationString; RestApiId: CloudFormationString; Stage?: CloudFormationString; }; }