| 44 | ) |
| 45 | |
| 46 | type Aws struct { |
| 47 | orgID int |
| 48 | teamID int |
| 49 | name string |
| 50 | lcuuid string |
| 51 | regionLcuuid string |
| 52 | uuidGenerate string |
| 53 | apiDefaultRegion string |
| 54 | httpClient *http.BuildableClient |
| 55 | azLcuuidMap map[string]int |
| 56 | includeRegions map[string]bool |
| 57 | vpcOrSubnetToRouter map[string]string |
| 58 | vmIDToPrivateIP map[string]string |
| 59 | vpcIDToLcuuid map[string]string |
| 60 | instanceIDToPrimaryIP map[string]string |
| 61 | subnetIDToVPCAZLcuuid map[string][2]string |
| 62 | publicIPToVinterface map[string]model.VInterface |
| 63 | credential awsconfig.LoadOptionsFunc |
| 64 | } |
| 65 | |
| 66 | type awsGressRule struct { |
| 67 | direction int |
nothing calls this directly
no outgoing calls
no test coverage detected