target/aws: support setting the image name

This is part of the lorax API, so support forwarding this.

Signed-off-by: Tom Gundersen <teg@jklm.no>
This commit is contained in:
Tom Gundersen 2019-11-26 22:49:12 +01:00 committed by Ondřej Budai
parent 553edef01d
commit e29b6fe06b
3 changed files with 5 additions and 4 deletions

View file

@ -6,8 +6,9 @@ import (
)
type Target struct {
Name string `json:"name"`
Options TargetOptions `json:"options"`
ImageName string `json:"image_name"`
Name string `json:"name"`
Options TargetOptions `json:"options"`
}
type TargetOptions interface {