typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
43 lines (42 loc) • 2.11 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type ClientVpnAuthorizationRule_Type = 'AWS::EC2::ClientVpnAuthorizationRule';
export declare const ClientVpnAuthorizationRule_Type = "AWS::EC2::ClientVpnAuthorizationRule";
/**
* Resource Type definition for AWS::EC2::ClientVpnAuthorizationRule
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html}
*/
export default function ClientVpnAuthorizationRule(props: ClientVpnAuthorizationRule_Properties): CfnResource<ClientVpnAuthorizationRule_Properties>;
/**
* Resource Type definition for AWS::EC2::ClientVpnAuthorizationRule
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html}
*/
export declare type ClientVpnAuthorizationRule_Properties = {
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-clientvpnendpointid}
*/
ClientVpnEndpointId: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-description}
*/
Description?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-accessgroupid}
*/
AccessGroupId?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-targetnetworkcidr}
*/
TargetNetworkCidr: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnauthorizationrule.html#cfn-ec2-clientvpnauthorizationrule-authorizeallgroups}
*/
AuthorizeAllGroups?: Resolvable<boolean>;
};