我正在尝试集中管理在子帐户中运行的自定义配置规则的 lambda 函数。lambda 函数将承担作为参数传递给配置规则的角色。
我正在关注如何跨多个 AWS 账户集中管理 AWS Config 规则 | AWS 开发运营博客。
提到这样做:
// Assume the role passed from the managed-account
aws.config.credentials = new aws.TemporaryCredentials({RoleArn: ruleParameters.executionRole});
let config = new aws.ConfigService({});
在 Python 中怎么做?