List Mobile Device Access Overrides
workmail_list_mobile_device_access_overrides | R Documentation |
Lists all the mobile device access overrides for any given combination of WorkMail organization, user, or device¶
Description¶
Lists all the mobile device access overrides for any given combination of WorkMail organization, user, or device.
Usage¶
workmail_list_mobile_device_access_overrides(OrganizationId, UserId,
DeviceId, NextToken, MaxResults)
Arguments¶
OrganizationId |
[required] The WorkMail organization under which to list mobile device access overrides. |
UserId |
The WorkMail user under which you list the mobile device access overrides. Accepts the following types of user identities:
|
DeviceId |
The mobile device to which the access override applies. |
NextToken |
The token to use to retrieve the next page of results. The first call does not require a token. |
MaxResults |
The maximum number of results to return in a single call. |
Value¶
A list with the following syntax:
list(
Overrides = list(
list(
UserId = "string",
DeviceId = "string",
Effect = "ALLOW"|"DENY",
Description = "string",
DateCreated = as.POSIXct(
"2015-01-01"
),
DateModified = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_mobile_device_access_overrides(
OrganizationId = "string",
UserId = "string",
DeviceId = "string",
NextToken = "string",
MaxResults = 123
)