Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewFunc ¶
func NewFunc(config interface{}, dependencies factory.Dependencies, out interface{}) error
NewFunc is the factory creation function for the SES Storage implementation.
Types ¶
type Config ¶
type Config struct { // Region is the region the SES component will operate in. Region string `validate:"required"` }
Config is used to create an SES storage component.
type Dependencies ¶
type Dependencies struct { // Logger is used to store log information. Logger gz.Logger `validate:"required"` // API is the SES API client used to interface with AWS SES. // If API is not provided, it will be initialized using Config values. API sesiface.SESAPI }
Dependencies is used to create an SES storage component.
func (*Dependencies) Validate ¶
func (d *Dependencies) Validate() error
Validate validates that the dependencies values are valid.
Click to show internal directories.
Click to hide internal directories.