typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
38 lines (37 loc) • 1.87 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type NetworkInterfaceAttachment_Type = 'AWS::EC2::NetworkInterfaceAttachment';
export declare const NetworkInterfaceAttachment_Type = "AWS::EC2::NetworkInterfaceAttachment";
/**
* Resource Type definition for AWS::EC2::NetworkInterfaceAttachment
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html}
*/
export default function NetworkInterfaceAttachment(props: NetworkInterfaceAttachment_Properties): CfnResource<NetworkInterfaceAttachment_Properties>;
/**
* Resource Type definition for AWS::EC2::NetworkInterfaceAttachment
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html}
*/
export declare type NetworkInterfaceAttachment_Properties = {
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deleteonterm}
*/
DeleteOnTermination?: Resolvable<boolean>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-deviceindex}
*/
DeviceIndex: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-instanceid}
*/
InstanceId: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-network-interface-attachment.html#cfn-ec2-network-interface-attachment-networkinterfaceid}
*/
NetworkInterfaceId: Resolvable<string>;
};