Skip to content

Update Availability Configuration

workmail_update_availability_configuration R Documentation

Updates an existing AvailabilityConfiguration for the given WorkMail organization and domain

Description

Updates an existing AvailabilityConfiguration for the given WorkMail organization and domain.

Usage

workmail_update_availability_configuration(OrganizationId, DomainName,
  EwsProvider, LambdaProvider)

Arguments

OrganizationId

[required] The WorkMail organization for which the AvailabilityConfiguration will be updated.

DomainName

[required] The domain to which the provider applies the availability configuration.

EwsProvider

The EWS availability provider definition. The request must contain exactly one provider definition, either EwsProvider or LambdaProvider. The previously stored provider will be overridden by the one provided.

LambdaProvider

The Lambda availability provider definition. The request must contain exactly one provider definition, either EwsProvider or LambdaProvider. The previously stored provider will be overridden by the one provided.

Value

An empty list.

Request syntax

svc$update_availability_configuration(
  OrganizationId = "string",
  DomainName = "string",
  EwsProvider = list(
    EwsEndpoint = "string",
    EwsUsername = "string",
    EwsPassword = "string"
  ),
  LambdaProvider = list(
    LambdaArn = "string"
  )
)