List Availability Configurations
workmail_list_availability_configurations | R Documentation |
List all the AvailabilityConfiguration's for the given WorkMail organization¶
Description¶
List all the AvailabilityConfiguration
's for the given WorkMail
organization.
Usage¶
workmail_list_availability_configurations(OrganizationId, MaxResults,
NextToken)
Arguments¶
OrganizationId |
[required] The WorkMail organization for which the
|
MaxResults |
The maximum number of results to return in a single call. |
NextToken |
The token to use to retrieve the next page of results. The first call does not require a token. |
Value¶
A list with the following syntax:
list(
AvailabilityConfigurations = list(
list(
DomainName = "string",
ProviderType = "EWS"|"LAMBDA",
EwsProvider = list(
EwsEndpoint = "string",
EwsUsername = "string"
),
LambdaProvider = list(
LambdaArn = "string"
),
DateCreated = as.POSIXct(
"2015-01-01"
),
DateModified = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_availability_configurations(
OrganizationId = "string",
MaxResults = 123,
NextToken = "string"
)