(endpoint: &'static str, cognito_pool_id: &'static str, region: &'static str)
| 137 | ); |
| 138 | |
| 139 | const fn new(endpoint: &'static str, cognito_pool_id: &'static str, region: &'static str) -> Self { |
| 140 | Self { |
| 141 | endpoint, |
| 142 | cognito_pool_id, |
| 143 | region: Region::from_static(region), |
| 144 | } |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | #[derive(Debug)] |
nothing calls this directly
no test coverage detected