ysaito1001
ysaito1001
Hi @orf, thank you for submitting the proposed changes! What you're describing seems reasonable to me. Could you do us a favor and submit a PR to [smithy-rs](https://github.com/smithy-lang/smithy-rs) instead (as...
Hi @xanather, Thank you for bringing this to our attention. The example snippet for `generate_rds_iam_token` has been removed due to the `aws-sig-auth` crate being deprecated. I have put together [a...
@jwarlander, you have a good point. The reason `generate_db_auth_token` is not part of the `aws-sdk-rds` crate is that the function is not a Smithy-modeled operation, but a rather library function...
Hi @elrob, looks like a timeout of 5 seconds kicked in before you observed the desired number of retries. Can you try disabling timeout (using [TimeoutConfig::disabled()](https://docs.rs/aws-sdk-elasticloadbalancingv2/latest/aws_sdk_elasticloadbalancingv2/config/timeout/struct.TimeoutConfig.html#method.disabled)) and pass it to...
Good eyes @rcoh! True, that's definitely something we want to clarify the error type for. > I'd expect the credentials provider to retry after a timeout up to the configured...
To add, `BucketLocationConstraint` for `us-east-1` is intentionally not included in [an S3 model](https://raw.githubusercontent.com/awslabs/aws-sdk-rust/main/aws-models/s3.json) (from which `aws_sdk_s3` is derived). You can also see that the location constraint for `us-east-1` is treated...
Thank you for reporting this. Can you enable trace debug logging, reproduce the issue, and then post the logs here? The log will probably be our next best bet without...
Hi @Ten0, thank you for reporting this! This is a bug in a Smithy model for `bedrockruntime` (from which `aws_sdk_bedrockruntime` is code generated), where the doc (which also comes from...
Hi @trueb2, we're working on a fix to address this panic issue. In the meantime, we have a question for your use case. _In general_, specifying the number of retry...
Thank you for your response. https://github.com/smithy-lang/smithy-rs/pull/3621 will fix a panic in a way that it should still allow you to retry the desired number of times. > Exponential backoff does...