typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
36 lines (35 loc) • 1.67 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type BasePathMapping_Type = 'AWS::ApiGateway::BasePathMapping';
export declare const BasePathMapping_Type = "AWS::ApiGateway::BasePathMapping";
/**
* Resource Type definition for AWS::ApiGateway::BasePathMapping {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html}
*/
export default function BasePathMapping(props: BasePathMapping_Properties): CfnResource<BasePathMapping_Properties>;
/**
* Resource Type definition for AWS::ApiGateway::BasePathMapping {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html}
*/
export declare type BasePathMapping_Properties = {
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath}
*/
BasePath?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname}
*/
DomainName: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid}
*/
RestApiId?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage}
*/
Stage?: Resolvable<string>;
};