ListPolicies
Returns a paginated list of all policies stored in the specified policy store.
Request Syntax
{
"filter": {
"policyTemplateId": "string
",
"policyType": "string
",
"principal": { ... },
"resource": { ... }
},
"maxResults": number
,
"nextToken": "string
",
"policyStoreId": "string
"
}
Request Parameters
For information about the parameters that are common to all actions, see Common Parameters.
The request accepts the following data in JSON format.
Note
In the following list, the required parameters are described first.
- policyStoreId
-
Specifies the ID of the policy store you want to list policies from.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 200.
Pattern:
[a-zA-Z0-9-]*
Required: Yes
- filter
-
Specifies a filter that limits the response to only policies that match the specified criteria. For example, you list only the policies that reference a specified principal.
Type: PolicyFilter object
Required: No
- maxResults
-
Specifies the total number of results that you want included in each response. If additional items exist beyond the number you specify, the
NextToken
response element is returned with a value (not null). Include the specified value as theNextToken
request parameter in the next call to the operation to get the next set of results. Note that the service might return fewer results than the maximum even when there are more results available. You should checkNextToken
after every operation to ensure that you receive all of the results.If you do not specify this parameter, the operation defaults to 10 policies per response. You can specify a maximum of 50 policies per response.
Type: Integer
Valid Range: Minimum value of 1.
Required: No
- nextToken
-
Specifies that you want to receive the next page of results. Valid only if you received a
NextToken
response in the previous request. If you did, it indicates that more output is available. Set this parameter to the value provided by the previous call'sNextToken
response to request the next page of results.Type: String
Length Constraints: Minimum length of 1. Maximum length of 8000.
Pattern:
[A-Za-z0-9-_=+/\.]*
Required: No
Response Syntax
{
"nextToken": "string",
"policies": [
{
"actions": [
{
"actionId": "string",
"actionType": "string"
}
],
"createdDate": "string",
"definition": { ... },
"effect": "string",
"lastUpdatedDate": "string",
"policyId": "string",
"policyStoreId": "string",
"policyType": "string",
"principal": {
"entityId": "string",
"entityType": "string"
},
"resource": {
"entityId": "string",
"entityType": "string"
}
}
]
}
Response Elements
If the action is successful, the service sends back an HTTP 200 response.
The following data is returned in JSON format by the service.
- policies
-
Lists all policies that are available in the specified policy store.
Type: Array of PolicyItem objects
- nextToken
-
If present, this value indicates that more output is available than is included in the current response. Use this value in the
NextToken
request parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until theNextToken
response element comes back asnull
. This indicates that this is the last page of results.Type: String
Length Constraints: Minimum length of 1. Maximum length of 8000.
Pattern:
[A-Za-z0-9-_=+/\.]*
Errors
For information about the errors that are common to all actions, see Common Errors.
- AccessDeniedException
-
You don't have sufficient access to perform this action.
HTTP Status Code: 400
- InternalServerException
-
The request failed because of an internal error. Try your request again later
HTTP Status Code: 500
- ResourceNotFoundException
-
The request failed because it references a resource that doesn't exist.
HTTP Status Code: 400
- ThrottlingException
-
The request failed because it exceeded a throttling quota.
HTTP Status Code: 400
- ValidationException
-
The request failed because one or more input parameters don't satisfy their constraint requirements. The output is provided as a list of fields and a reason for each field that isn't valid.
The possible reasons include the following:
-
UnrecognizedEntityType
The policy includes an entity type that isn't found in the schema.
-
UnrecognizedActionId
The policy includes an action id that isn't found in the schema.
-
InvalidActionApplication
The policy includes an action that, according to the schema, doesn't support the specified principal and resource.
-
UnexpectedType
The policy included an operand that isn't a valid type for the specified operation.
-
IncompatibleTypes
The types of elements included in a
set
, or the types of expressions used in anif...then...else
clause aren't compatible in this context. -
MissingAttribute
The policy attempts to access a record or entity attribute that isn't specified in the schema. Test for the existence of the attribute first before attempting to access its value. For more information, see the has (presence of attribute test) operator
in the Cedar Policy Language Guide. -
UnsafeOptionalAttributeAccess
The policy attempts to access a record or entity attribute that is optional and isn't guaranteed to be present. Test for the existence of the attribute first before attempting to access its value. For more information, see the has (presence of attribute test) operator
in the Cedar Policy Language Guide. -
ImpossiblePolicy
Cedar has determined that a policy condition always evaluates to false. If the policy is always false, it can never apply to any query, and so it can never affect an authorization decision.
-
WrongNumberArguments
The policy references an extension type with the wrong number of arguments.
-
FunctionArgumentValidationError
Cedar couldn't parse the argument passed to an extension type. For example, a string that is to be parsed as an IPv4 address can contain only digits and the period character.
HTTP Status Code: 400
-
Examples
Example 1
The following example lists all policies in the policy store.
Sample Request
POST HTTP/1.1
Host: verifiedpermissions.us-east-1.amazonaws.com
X-Amz-Date: 20230613T200059Z
Accept-Encoding: identity
X-Amz-Target: VerifiedPermissions.ListPolicies
User-Agent: <UserAgentString>
Authorization: AWS4-HMAC-SHA256 Credential=<Credential>, SignedHeaders=<Headers>, Signature=<Signature>
Content-Length: <PayloadSizeBytes>
{
"policyStoreId": "PSEXAMPLEabcdefg111111"
}
Sample Response
HTTP/1.1 200 OK
Date: Tue, 13 Jun 2023 20:00:59 GMT
Content-Type: application/x-amz-json-1.0
Content-Length: <PayloadSizeBytes>
vary: origin
vary: access-control-request-method
vary: access-control-request-headers
x-amzn-requestid: a1b2c3d4-e5f6-a1b2-c3d4-EXAMPLE11111
Connection: keep-alive
{
"policies": [
{
"actions": [
{
"actionId": "ViewPhoto",
"actionType": "PhotoFlash::Action"
},
{
"actionId": "SharePhoto",
"actionType": "PhotoFlash::Action"
}
],
"createdDate":"2023-05-16T20:33:01.730817Z",
"effect": "Permit",
"definition": {
"static": {
"description": "Grant members of janeFriends UserGroup access to the vacationFolder Album"
}
},
"lastUpdatedDate": "2023-05-16T21:12:52.882422+00:00",
"policyId": "SPEXAMPLEabcdefg111111",
"policyStoreId": "PSEXAMPLEabcdefg111111",
"policyType": "STATIC",
"principal": {
"entityId": "janeFriends",
"entityType": "UserGroup"
},
"resource": {
"entityId": "vacationFolder",
"entityType": "Album"
}
},
{
"createdDate": "2023-05-16T21:19:44.528576+00:00",
"effect": "Permit",
"definition": {
"static": {
"description": "Grant everyone access to the publicFolder Album"
}
},
"lastUpdatedDate": "2023-05-16T21:19:44.528576+00:00",
"policyId": "SPEXAMPLEabcdefg222222",
"policyStoreId": "PSEXAMPLEabcdefg111111",
"policyType": "STATIC",
"resource": {
"entityId": "publicFolder",
"entityType": "Album"
}
}
]
}
Example 2
The following example lists all policies for a specified principal.
Sample Request
POST HTTP/1.1
Host: verifiedpermissions.us-east-1.amazonaws.com
X-Amz-Date: 20230613T200059Z
Accept-Encoding: identity
X-Amz-Target: VerifiedPermissions.ListPolicies
User-Agent: <UserAgentString>
Authorization: AWS4-HMAC-SHA256 Credential=<Credential>, SignedHeaders=<Headers>, Signature=<Signature>
Content-Length: <PayloadSizeBytes>
{
"filter": {
"principal": {
"identifier": {
"entityType": "User",
"entityId": "alice"
}
}
}
}
Sample Response
HTTP/1.1 200 OK
Date: Tue, 13 Jun 2023 20:00:59 GMT
Content-Type: application/x-amz-json-1.0
Content-Length: <PayloadSizeBytes>
vary: origin
vary: access-control-request-method
vary: access-control-request-headers
x-amzn-requestid: a1b2c3d4-e5f6-a1b2-c3d4-EXAMPLE11111
Connection: keep-alive
{
"policies": [
{
"policyStoreId": "ps-f0ff7596-a721-4df2-8c04-45bcb8e12ccd",
"policyId": "ip-376c8292-968e-48fb-8b77-5f695e8be789",
"arn": "arn:aws:verifiedpermissions:123456789012::policy/ps-f0ff7596-a721-4df2-8c04-45bcb8e12ccd/ip-376c8292-968e-48fb-8b77-5f695e8be789",
"policyType": "STATIC",
"principal": {
"entityType": "User",
"entityId": "alice"
},
"resource": {
"entityType": "Album",
"entityId": "bob_folder"
},
"policyDefinition": {
"static": {
"description": "An example policy"
}
},
"createdDate": "2022-12-09T22:55:16.067533Z",
"lastUpdatedDate": "2022-12-09T22:55:16.067533Z"
},
{
"policyStoreId": "ps-f0ff7596-a721-4df2-8c04-45bcb8e12ccd",
"policyId": "ip-9faa0844-24a0-4d81-a937-0ad7b155750a",
"arn": "arn:aws:verifiedpermissions:123456789012::policy/ps-f0ff7596-a721-4df2-8c04-45bcb8e12ccd/ip-9faa0844-24a0-4d81-a937-0ad7b155750a",
"policyType": "STATIC",
"principal": {
"entityType": "User",
"entityId": "alice"
},
"resource": {
"entityType": "Album",
"entityId": "alice_folder"
},
"policyDefinition": {
"static": {}
},
"createdDate": "2022-12-09T23:00:24.66266Z",
"lastUpdatedDate": "2022-12-09T23:00:24.66266Z"
}
]
}
Example 3
The following example uses the Filter
parameter to list only the
template-linked policies in the specified policy store.
Sample Request
POST HTTP/1.1
Host: verifiedpermissions.us-east-1.amazonaws.com
X-Amz-Date: 20230613T200059Z
Accept-Encoding: identity
X-Amz-Target: VerifiedPermissions.ListPolicies
User-Agent: <UserAgentString>
Authorization: AWS4-HMAC-SHA256 Credential=<Credential>, SignedHeaders=<Headers>, Signature=<Signature>
Content-Length: <PayloadSizeBytes>
{
"filter": {
"policyType": "TEMPLATE_LINKED"
}
}
Sample Response
HTTP/1.1 200 OK
Date: Tue, 13 Jun 2023 20:00:59 GMT
Content-Type: application/x-amz-json-1.0
Content-Length: <PayloadSizeBytes>
vary: origin
vary: access-control-request-method
vary: access-control-request-headers
x-amzn-requestid: a1b2c3d4-e5f6-a1b2-c3d4-EXAMPLE11111
Connection: keep-alive
{
"policies": [{
"policyStoreId": "PSEXAMPLEabcdefg111111",
"policyId": "TPEXAMPLEabcdefg111111",
"arn": "arn:aws:verifiedpermissions:us-east-1:123456789012:policy/PSEXAMPLEabcdefg111111/TPEXAMPLEabcdefg111111",
"policyType": "TEMPLATE_LINKED",
"principal": {
"entityType": "User",
"entityId": "alice"
},
"resource": {
"entityType": "Photo",
"entityId": "pic.jpg"
},
"policyDefinition": {
"templateLinked": {
"policyTemplateId": "PTEXAMPLEabcdefg111111",
"principal": {
"entityType": "User",
"entityId": "alice"
},
"resource": {
"entityType": "Photo",
"entityId": "pic.jpg"
}
}
},
"createdDate": "2023-06-13T16:03:07.620867Z",
"lastUpdatedDate": "2023-06-13T16:03:07.620867Z"
}]
}
Example 4
The following example uses the Filter
parameter to list only
those policies that were instantiated from the specified policy template.
Sample Request
POST HTTP/1.1
Host: verifiedpermissions.us-east-1.amazonaws.com
X-Amz-Date: 20230613T200059Z
Accept-Encoding: identity
X-Amz-Target: VerifiedPermissions.ListPolicies
User-Agent: <UserAgentString>
Authorization: AWS4-HMAC-SHA256 Credential=<Credential>, SignedHeaders=<Headers>, Signature=<Signature>
Content-Length: <PayloadSizeBytes>
{
"filter": {
"policyTemplateId": "PTEXAMPLEabcdefg111111"
}
}
Sample Response
HTTP/1.1 200 OK
Date: Tue, 13 Jun 2023 20:00:59 GMT
Content-Type: application/x-amz-json-1.0
Content-Length: <PayloadSizeBytes>
vary: origin
vary: access-control-request-method
vary: access-control-request-headers
x-amzn-requestid: a1b2c3d4-e5f6-a1b2-c3d4-EXAMPLE11111
Connection: keep-alive
{
"policies": [{
"policyStoreId": "PSEXAMPLEabcdefg111111",
"policyId": "TPEXAMPLEabcdefg111111",
"arn": "arn:aws:verifiedpermissions::128716708097:policy/PSEXAMPLEabcdefg111111/TPEXAMPLEabcdefg111111",
"policyType": "TEMPLATE_LINKED",
"principal": {
"entityType": "User",
"entityId": "alice"
},
"resource": {
"entityType": "Photo",
"entityId": "pic.jpg"
},
"policyDefinition": {
"templateLinked": {
"policyTemplateId": "pt-e42e3eee-8cbc-4af6-a187-4c94773ec89b",
"principal": {
"entityType": "User",
"entityId": "alice"
},
"resource": {
"entityType": "Photo",
"entityId": "pic.jpg"
}
}
},
"createdDate": "2023-03-15T16:03:07.620867Z",
"lastUpdatedDate": "2023-03-15T16:03:07.620867Z"
}]
}
See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following: