List Groups Older Than Ordering Id
kendra_list_groups_older_than_ordering_id | R Documentation |
Provides a list of groups that are mapped to users before a given ordering or timestamp identifier¶
Description¶
Provides a list of groups that are mapped to users before a given ordering or timestamp identifier.
list_groups_older_than_ordering_id
is currently not supported in the
Amazon Web Services GovCloud (US-West) region.
Usage¶
kendra_list_groups_older_than_ordering_id(IndexId, DataSourceId,
OrderingId, NextToken, MaxResults)
Arguments¶
IndexId |
[required] The identifier of the index for getting a list of groups mapped to users before a given ordering or timestamp identifier. |
DataSourceId |
The identifier of the data source for getting a list of groups mapped to users before a given ordering timestamp identifier. |
OrderingId |
[required] The timestamp identifier used for the latest
|
NextToken |
If the previous response was incomplete (because there is more data to retrieve), Amazon Kendra returns a pagination token in the response. You can use this pagination token to retrieve the next set of groups that are mapped to users before a given ordering or timestamp identifier. |
MaxResults |
The maximum number of returned groups that are mapped to users before a given ordering or timestamp identifier. |
Value¶
A list with the following syntax:
list(
GroupsSummaries = list(
list(
GroupId = "string",
OrderingId = 123
)
),
NextToken = "string"
)
Request syntax¶
svc$list_groups_older_than_ordering_id(
IndexId = "string",
DataSourceId = "string",
OrderingId = 123,
NextToken = "string",
MaxResults = 123
)