Boto3 在使用 update_service_specific_credential 时获取 InvalidClie



我想使用 Boto3 将 AWS CodeCommit 的 Git 凭证更改为活动/非活动。

我尝试使用update_service_specific_credential但出现此错误:

An error occurred (InvalidClientTokenId) when calling the CreateServiceSpecificCredential operation: The security token included in the request is invalid: ClientError

我的代码:

iamClient = boto3.client('iam')
response=iamClient.update_service_specific_credential(UserName="****",
ServiceSpecificCredentialId="*****",Status="Active")

有人试图使用它?有什么建议吗?

谢谢!

AWS 错误通常是故意不透明/非特定的,所以你能提供更多细节吗?具体而言,执行更新的用户和要更新其凭据的用户是两个不同的用户吗?如果要更新的用户是执行更新的用户,则可能会出现争用条件。

相关内容

  • 没有找到相关文章