spf5000

Results 5 comments of spf5000
trafficstars

I wanted to piggy-back off this as I'm not sure the best place to put generic requests for serde serialize/deserialize support. I'm currently looking for ways to deserialize the items...

Sorry for the slow replies here. Below is a full example reproducing this issue: src/main.rs: ``` use aws_credential_types::provider::ProvideCredentials; use aws_sdk_sts::model::Credentials; use aws_sdk_sts::Client; fn main() { println!("Hello, world!"); get_credentials_helper(); } #[tokio::main]...

To be clear, I understand that I can leverage the `Credentials` struct in `aws_credential_types`, but I'm trying to implement a simple function that will return a `Box` that way I...

I've also tried updating the `aws_sdk_sts::model::Credentials` to `use aws_credential_types::Credentials` and I've tried removing the export and the explicit type assignment in `let creds: &Credentials = req.send()` (ex: `let creds: =...

Makes sense. Any plans to clarify that in the documentation? Adding a link from the STS crate might help avoid future confusion from folks.