typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
31 lines (30 loc) • 1.43 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type VolumeAttachment_Type = 'AWS::EC2::VolumeAttachment';
export declare const VolumeAttachment_Type = "AWS::EC2::VolumeAttachment";
/**
* Resource Type definition for AWS::EC2::VolumeAttachment {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html}
*/
export default function VolumeAttachment(props: VolumeAttachment_Properties): CfnResource<VolumeAttachment_Properties>;
/**
* Resource Type definition for AWS::EC2::VolumeAttachment {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html}
*/
export declare type VolumeAttachment_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-volumeid}
*/
VolumeId: Resolvable<string>;
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-instanceid}
*/
InstanceId: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volumeattachment.html#cfn-ec2-ebs-volumeattachment-device}
*/
Device: Resolvable<string>;
};