package
Version:
v0.0.466
Opens a new window with list of versions in this module.
Published: Jun 26, 2024
License: MIT
Opens a new window with license information.
Imports: 10
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type CliDevEvent struct {
App string `json:"app"`
Stage string `json:"stage"`
Region string `json:"region"`
}
type Frame struct {
Raw string `json:"raw"`
}
type Invocation struct {
ID string `json:"id,omitempty"`
Source string `json:"source,omitempty"`
Cold bool `json:"cold,omitempty"`
Input json.RawMessage `json:"input,omitempty"`
Output interface{} `json:"output,omitempty"`
Start int64 `json:"start,omitempty"`
End int64 `json:"end,omitempty"`
Errors []InvocationError `json:"errors"`
Logs []InvocationLog `json:"logs"`
Report *InvocationReport `json:"report,omitempty"`
}
type InvocationError struct {
ID string `json:"id"`
Error string `json:"error"`
Message string `json:"message"`
Stack []Frame `json:"stack"`
Failed bool `json:"failed"`
}
type InvocationLog struct {
ID string `json:"id,omitempty"`
Timestamp int64 `json:"timestamp,omitempty"`
Message string `json:"message,omitempty"`
}
type InvocationReport struct {
Duration int64 `json:"duration"`
Init int64 `json:"init"`
Size int64 `json:"size"`
Memory int64 `json:"memory"`
Xray string `json:"xray"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.