List Access Control Rules
workmail_list_access_control_rules | R Documentation |
Lists the access control rules for the specified organization¶
Description¶
Lists the access control rules for the specified organization.
Usage¶
Arguments¶
OrganizationId
[required] The identifier for the organization.
Value¶
A list with the following syntax:
list(
Rules = list(
list(
Name = "string",
Effect = "ALLOW"|"DENY",
Description = "string",
IpRanges = list(
"string"
),
NotIpRanges = list(
"string"
),
Actions = list(
"string"
),
NotActions = list(
"string"
),
UserIds = list(
"string"
),
NotUserIds = list(
"string"
),
DateCreated = as.POSIXct(
"2015-01-01"
),
DateModified = as.POSIXct(
"2015-01-01"
),
ImpersonationRoleIds = list(
"string"
),
NotImpersonationRoleIds = list(
"string"
)
)
)
)