func IsFailed()

in pkg/cloudformation/helpers.go [61:68]


func IsFailed(status string) bool {
	for _, s := range FailedStatuses {
		if s == status {
			return true
		}
	}
	return false
}