UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

26 lines (25 loc) 1.17 kB
import { CfnResource, Resolvable } from '../../base'; export declare type SubnetCidrBlock_Type = 'AWS::EC2::SubnetCidrBlock'; export declare const SubnetCidrBlock_Type = "AWS::EC2::SubnetCidrBlock"; /** * Resource Type definition for AWS::EC2::SubnetCidrBlock {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html} */ export default function SubnetCidrBlock(props: SubnetCidrBlock_Properties): CfnResource<SubnetCidrBlock_Properties>; /** * Resource Type definition for AWS::EC2::SubnetCidrBlock {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html} */ export declare type SubnetCidrBlock_Properties = { Id?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock} */ Ipv6CidrBlock: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid} */ SubnetId: Resolvable<string>; };