typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
31 lines (30 loc) • 1.51 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type VPCEndpointService_Type = 'AWS::EC2::VPCEndpointService';
export declare const VPCEndpointService_Type = "AWS::EC2::VPCEndpointService";
/**
* Resource Type definition for AWS::EC2::VPCEndpointService {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html}
*/
export default function VPCEndpointService(props: VPCEndpointService_Properties): CfnResource<VPCEndpointService_Properties>;
/**
* Resource Type definition for AWS::EC2::VPCEndpointService {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html}
*/
export declare type VPCEndpointService_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-networkloadbalancerarns}
*/
NetworkLoadBalancerArns?: Resolvable<string>[];
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-acceptancerequired}
*/
AcceptanceRequired?: Resolvable<boolean>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-gatewayloadbalancerarns}
*/
GatewayLoadBalancerArns?: Resolvable<string>[];
};