以下GetRoleInput
结构用作GetRole()
函数的输入以获取aws角色
type GetRoleInput struct {
RoleName *string `min:"1" type:"string" required:"true"`
}
以下是GetGroupInput
结构,用于通过调用GetGroup()
方法来获取aws组
type GetRoleInput struct {
RoleName *string `min:"1" type:"string" required:"true"`
}
现在跟随GetPolicyInput
意味着获得IAM托管策略
type GetPolicyInput struct {
PolicyArn *string `min:"20" type:"string" required:"true"`
}
在GetPolicyInput
中,与前两种情况不同,使用PolicyArn代替policyName。所以问题是