List Groups
List all groups with an optional filter string.
note
At this time, the List Groups action is only capable of returning up to 50 results.
External Documentation
To learn more, visit the AWS IAM Identity Center documentation.
Parameters
Parameter | Description |
---|---|
Filter | Valid filter string.Supported filter combinations: (displayName), (id and member), (member and id).Note that the use of ID as an individual filter, while valid, should be avoided as there is already a Get Group action available.Supported comparison operator in filters: eq Filter must be specified as: <filterAttribute> eq "<filterValue>" |
Example Output
{
"totalResults": 2,
"itemsPerPage": 2,
"startIndex": 1,
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:ListResponse"
],
"Resources": [
{
"id": "90677c608a-ef9cb2da-d480-422b-9901-451b1bf9e607",
"meta": {
"resourceType": "Group",
"created": "2020-07-22T23:10:21Z",
"lastModified": "2020-07-22T23:10:21Z"
},
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:Group"
],
"displayName": "Group Foo",
"members": []
},
{
"id": "90677c608a-95aca21b-4bb7-4161-94cb-d885e2920414",
"meta": {
"resourceType": "Group",
"created": "2020-07-23T00:16:49Z",
"lastModified": "2020-07-23T00:16:49Z"
},
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:Group"
],
"displayName": "Group Beta",
"members": []
}
]
}
Workflow Library Example
Sync Groups Between Azure Active Directory and Aws Sso
Preview this Workflow on desktop