typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
40 lines (39 loc) • 1.59 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type VpcLink_Type = 'AWS::ApiGateway::VpcLink';
export declare const VpcLink_Type = "AWS::ApiGateway::VpcLink";
/**
* Resource Type definition for AWS::ApiGateway::VpcLink {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html}
*/
export default function VpcLink(props: VpcLink_Properties): CfnResource<VpcLink_Properties>;
/**
* Resource Type definition for AWS::ApiGateway::VpcLink {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html}
*/
export declare type VpcLink_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-description}
*/
Description?: Resolvable<string>;
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-targetarns}
*/
TargetArns: Resolvable<string>[];
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-tags}
*/
Tags?: Tag[];
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#cfn-apigateway-vpclink-name}
*/
Name: Resolvable<string>;
};
export declare type Tag = {
Value: Resolvable<string>;
Key: Resolvable<string>;
};