blob: 9d33728ba52457a678e89eb0d840727bd22a59be [file] [log] [blame]
Jon Perritt654fb0e2014-10-23 20:54:14 -05001package bootfromvolume
2
3type BlockDeviceMapping struct {
Jon Perritt4149d7c2014-10-23 21:23:46 -05004 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"`
Jon Perritt654fb0e2014-10-23 20:54:14 -050010}