Searching for equivalent to Boto3's RDS.Client.generate_db_auth_token
#1049
-
We're wanting to use IRSA authentication for more resources. We've successfully done so for S3 using Section 9 of this guide shows use of Boto3's I can't see any equivalent in |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @robjtede, thank you for asking the question on The workaround in the above issue requires additional code; The reason Essentially, if labeled as |
Beta Was this translation helpful? Give feedback.
Hi @robjtede, thank you for asking the question on
generate_db_auth_token
. We acknowledge that similar requests have been asked in the past (you can see a workaround in this issue, for instance).The workaround in the above issue requires additional code; The reason
generate_db_auth_token
is not part of theaws-sdk-rds
crate is that the function is not a Smithy-modeled operation, but a rather library function that needs to be hand-written (as opposed to code-generated by smithy-rs). For such a feature, you will see the high-level-library label within this repository.Essentially, if labeled as
high-level-library
, it means we need to figure out how to house those high-level libraries, sepa…