blob: ef093e85046b09b4250a502fb206a0e003d18910 [file] [log] [blame]
Jon Perritt654fb0e2014-10-23 20:54:14 -05001package bootfromvolume
2
3type BlockDeviceMapping struct {
4 BootIndex int `json:"boot_index"`
5 DeleteOnTermination bool `json:"delete_on_termination"`
6 DestinationType string `json:"destination_type"`
7 SourceType string `json:"source_type"`
8 UUID string `json:"uuid"`
9 VolumeSize int `json:"volume_size"`
10}