typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
31 lines (30 loc) • 1.32 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type SubnetGroup_Type = 'AWS::DAX::SubnetGroup';
export declare const SubnetGroup_Type = "AWS::DAX::SubnetGroup";
/**
* Resource Type definition for AWS::DAX::SubnetGroup {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html}
*/
export default function SubnetGroup(props: SubnetGroup_Properties): CfnResource<SubnetGroup_Properties>;
/**
* Resource Type definition for AWS::DAX::SubnetGroup {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html}
*/
export declare type SubnetGroup_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#cfn-dax-subnetgroup-description}
*/
Description?: Resolvable<string>;
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#cfn-dax-subnetgroup-subnetids}
*/
SubnetIds: Resolvable<string>[];
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#cfn-dax-subnetgroup-subnetgroupname}
*/
SubnetGroupName?: Resolvable<string>;
};