typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
36 lines (35 loc) • 1.6 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type ApiMapping_Type = 'AWS::ApiGatewayV2::ApiMapping';
export declare const ApiMapping_Type = "AWS::ApiGatewayV2::ApiMapping";
/**
* Resource Type definition for AWS::ApiGatewayV2::ApiMapping {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html}
*/
export default function ApiMapping(props: ApiMapping_Properties): CfnResource<ApiMapping_Properties>;
/**
* Resource Type definition for AWS::ApiGatewayV2::ApiMapping {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html}
*/
export declare type ApiMapping_Properties = {
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-domainname}
*/
DomainName: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-stage}
*/
Stage: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apimappingkey}
*/
ApiMappingKey?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apimapping.html#cfn-apigatewayv2-apimapping-apiid}
*/
ApiId: Resolvable<string>;
};