UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

31 lines (30 loc) 1.39 kB
import { CfnResource, Resolvable } from '../../base'; export declare type Deployment_Type = 'AWS::ApiGatewayV2::Deployment'; export declare const Deployment_Type = "AWS::ApiGatewayV2::Deployment"; /** * Resource Type definition for AWS::ApiGatewayV2::Deployment {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html} */ export default function Deployment(props: Deployment_Properties): CfnResource<Deployment_Properties>; /** * Resource Type definition for AWS::ApiGatewayV2::Deployment {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html} */ export declare type Deployment_Properties = { Id?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-description} */ Description?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-stagename} */ StageName?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid} */ ApiId: Resolvable<string>; };