typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
36 lines (35 loc) • 1.52 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type MountTarget_Type = 'AWS::EFS::MountTarget';
export declare const MountTarget_Type = "AWS::EFS::MountTarget";
/**
* Resource Type definition for AWS::EFS::MountTarget {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html}
*/
export default function MountTarget(props: MountTarget_Properties): CfnResource<MountTarget_Properties>;
/**
* Resource Type definition for AWS::EFS::MountTarget {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html}
*/
export declare type MountTarget_Properties = {
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress}
*/
IpAddress?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid}
*/
FileSystemId: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-securitygroups}
*/
SecurityGroups: Resolvable<string>[];
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid}
*/
SubnetId: Resolvable<string>;
};