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¶
Arguments¶
OrganizationId
[required] The WorkMail organization for which the
AvailabilityConfiguration
's will be listed.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"
)