Jon Perritt | 654fb0e | 2014-10-23 20:54:14 -0500 | [diff] [blame] | 1 | package bootfromvolume |
2 | |||||
3 | type BlockDeviceMapping struct { | ||||
Jon Perritt | 4149d7c | 2014-10-23 21:23:46 -0500 | [diff] [blame^] | 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"` | ||||
Jon Perritt | 654fb0e | 2014-10-23 20:54:14 -0500 | [diff] [blame] | 10 | } |