此操作用来列出与指定用户关联的策略。
请求参数
名称 | 描述 | 是否必须 |
---|---|---|
Action | ListAttachedUserPolicies。 | 是 |
Version | 请求版本。 取值:2010-05-08。默认值为2010-05-08。 |
否 |
UserName | IAM用户名。 类型:字符串 取值:1~64个字符组成,字符只能包含字母、数字或特殊字符,字母不区分大小写,特殊字符只能是:下划线(_)、中划线(-)、逗号(,)、句点(.)、加号(+)、等号(=)和at符号(@)。 |
是 |
Marker | 分页标识。还有需要返回的策略时,上条响应结果中会返回该参数。查看未显示项时,请求参数中需要携带此参数。 类型:字符串 取值:与上条响应中返回的结果值相同。 |
否 |
MaxItems | 设置响应中最多返回的条数。如果存在超出您指定的返回项,则IsTruncated响应元素为true,表示还有未返回项。查看未显示的项时,需要携带响应参数Marker的值。 类型:整型 取值:1~1000,默认值为100。 |
否 |
响应结果
名称 描述 IsTruncated 与用户关联的策略是否都已经返回:
true:有未返回的与用户关联的策略。
false:已经返回所有与用户关联的策略。
Marker 分页标识。当IsTruncated是true时,该项存在,其值用于下一次请求的参数Marker的取值。 AttachedPolicies.member.PolicyArn 策略的资源名称。 AttachedPolicies.member.PolicyName 策略名称。 AttachedPolicies.member.Scope 策略类型:
Local:用户自定义策略。
OOS:系统策略。
AttachedPolicies.member.Description 策略描述。
请求示例
列出IAM用户test_user_2关联的策略。
POST / HTTP/1.1
Host: oos-cn-iam.ctyunapi.cn
x-amz-content-sha256: UNSIGNED-PAYLOAD
Authorization: SignatureValue
X-Amz-Date: 20190214T055307Z
Content-type: application/octet-stream
Content-Length: 82
Action=ListAttachedUserPolicies&Version=2010-05-08&UserName=test_user_2&MaxItems=2
响应示例
HTTP/1.1 200 OK
x-amz-request-id:a0597755ea82423f
Content-Type:text/xml;charset=UTF-8
Content-Length:824
Date:Thu, 14 Feb 2019 05:53:07 GMT
Server: CTYUN
<ListAttachedUserPoliciesResponse>
<ListAttachedUserPoliciesResult>
<IsTruncated>false</IsTruncated>
<AttachedPolicies>
<member>
<PolicyArn>arn:ctyun:iam::10rc2arpn6306:policy/policy9</PolicyArn>
<PolicyName>policy9</PolicyName>
<Scope>Local</Scope>
<Description>test</Description>
</member>
<member>
<PolicyArn>arn:ctyun:iam::10rc2arpn6306:policy/policy8</PolicyArn>
<PolicyName>policy8</PolicyName>
<Scope>Local</Scope>
<Description>test</Description>
</member>
</AttachedPolicies>
</ListAttachedUserPoliciesResult>
<ResponseMetadata>
<RequestId>a0597755ea82423f </RequestId>
</ResponseMetadata>
</ListAttachedUserPoliciesResponse>