provision.go 556 B

12345678910111213141516171819
  1. package types
  2. type CreateRDSInfraRequest struct {
  3. // version of the postgres engine
  4. DBEngineVersion string `json:"db_engine_version"`
  5. // db type - postgres / mysql
  6. DBFamily string `json:"db_family"`
  7. // db instance credentials specifications
  8. DBName string `json:"db_name"`
  9. Username string `json:"username"`
  10. Password string `json:"password"`
  11. MachineType string `json:"machine_type"`
  12. DBStorage string `json:"db_allocated_storage"`
  13. DBMaxStorage string `json:"db_max_allocated_storage"`
  14. DBEncryption bool `json:"db_storage_encrypted"`
  15. }