@spotinst/spinnaker-deck
Version:
Spinnaker-Deck service, forked with support to Spotinst
17 lines (15 loc) • 335 B
text/typescript
export interface IEbsBlockDevice {
deleteOnTermination?: boolean;
encrypted?: boolean;
iops?: number;
kmsKeyId?: string;
snapshotId?: string;
volumeSize?: number;
volumeType?: string;
}
export interface IBlockDeviceMapping {
deviceName?: string;
ebs?: IEbsBlockDevice;
noDevice?: string;
virtualName?: string;
}