Add apitype for stack rename request

This commit is contained in:
Matt Ellis 2019-03-11 12:22:11 -07:00
parent 8042adafe5
commit d1f8af249d

View file

@ -210,3 +210,8 @@ type AppendUpdateLogEntryRequest struct {
Kind string `json:"kind"`
Fields map[string]interface{} `json:"fields"`
}
// StackRenameRequest is the shape of the request to change an existing stack's name.
type StackRenameRequest struct {
NewName string `json:"newName"`
}