Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Author ¶ added in v0.0.33
type Author struct { Id *int `json:"id,omitempty" db:"id"` FirstName string `json:"firstname" db:"fname"` MiddleName *string `json:"middlename,omitempty" db:"mname"` LastName string `json:"lastname" db:"lname"` Title *string `json:"title,omitempty" db:"title"` IsActive bool `json:"isactive,omitempty" db:"isactive"` CreatedOn *string `json:"createdon,omitempty" db:"createdOn"` UpdatedOn *string `json:"updatedon,omitempty" db:"updatedOn"` DeletedOn *string `json:"deletedon,omitempty" db:"deletedOn"` Papers []Paper `json:"papers,omitempty" db:"-"` }
type FileMetaData ¶ added in v0.0.31
type LambdaConfig ¶
type LambdaConfig struct { Name string `yaml:"name"` RoleName string `yaml:"rolename"` Architecture string `yaml:"architecture"` Runtime string `yaml:"runtime"` Handler string `yaml:"handler"` Filename string `yaml:"filename"` Endpoint []struct { Version int `yaml:"version"` Resource string `yaml:"resource"` Methods []struct { Name string `yaml:"name"` Req string `yaml:"req"` Res string `yaml:"res"` } `yaml:"methods"` } `yaml:"endpoint"` }
type LambdaInput ¶ added in v0.0.4
type LambdaIntegration ¶ added in v0.0.6
type LambdaIntegration struct {
LambdaName string
}
type Paper ¶ added in v0.0.34
type Paper struct { PageCnt *int `json:"pagecnt,omitempty"` Title string `json:"title"` ResearchAreas []ResearchArea `json:"researchareas"` }
type RESTEndpointInput ¶ added in v0.0.5
type RESTEndpointInput struct { AccountId string Region string ApiId string ParentResourceId string ResourceId string ResourceName string Route string Stage string Integration *LambdaIntegration Methods []RESTMethod }
type RESTMethod ¶ added in v0.0.5
type ResearchArea ¶ added in v0.0.33
type ResearchArea struct {
Name string `json:"name"`
}
Click to show internal directories.
Click to hide internal directories.