RateTier is a single tier within volume-based pricing.
| 47 | |
| 48 | // RateTier is a single tier within volume-based pricing. |
| 49 | type RateTier struct { |
| 50 | Price string // e.g. "0.0000035000" |
| 51 | StartRange string // e.g. "0" |
| 52 | EndRange string // e.g. "333000000", "Inf" |
| 53 | } |
| 54 | |
| 55 | type EstimateResult struct { |
| 56 | ResourceName string |
nothing calls this directly
no outgoing calls
no test coverage detected