(mut self, endpoint: impl Into<String>)
| 154 | } |
| 155 | |
| 156 | pub fn endpoint(mut self, endpoint: impl Into<String>) -> Self { |
| 157 | self.endpoint = Some(endpoint.into()); |
| 158 | self |
| 159 | } |
| 160 | |
| 161 | pub fn region(mut self, region: impl Into<String>) -> Self { |
| 162 | self.region = Some(region.into()); |
no outgoing calls