| 12 | |
| 13 | #[derive(Debug, Clone)] |
| 14 | pub struct BedrockConfig { |
| 15 | pub region: String, |
| 16 | pub access_key_id: String, |
| 17 | pub secret_access_key: String, |
| 18 | pub session_token: Option<String>, |
| 19 | pub endpoint_url: Option<String>, |
| 20 | } |
| 21 | |
| 22 | #[derive(Debug)] |
| 23 | pub struct BedrockProvider { |
nothing calls this directly
no outgoing calls
no test coverage detected