0

在创建 AWS 密码时,我想将密码配置为使用 lambda 函数来轮换密码,并传递轮换参数。在 C# 中是

var response = client.RotateSecret(new RotateSecretRequest  {
RotationLambdaARN = "arn:aws:lambda:us-west-2:123456789012:function:MyTestDatabaseRotationLambda",
RotationRules = new RotationRulesType { AutomaticallyAfterDays = 30 },
SecretId = "MyTestDatabaseSecret"  });

如何将有效负载/参数传递给 MyTestDatabaseRotationLambda?这是为所有秘密管理器使用相同的轮换功能。

4

0 回答 0