Struct aws_sdk_workmail::operation::update_availability_configuration::UpdateAvailabilityConfigurationInput
source · #[non_exhaustive]pub struct UpdateAvailabilityConfigurationInput {
pub organization_id: Option<String>,
pub domain_name: Option<String>,
pub ews_provider: Option<EwsAvailabilityProvider>,
pub lambda_provider: Option<LambdaAvailabilityProvider>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.organization_id: Option<String>
The WorkMail organization for which the AvailabilityConfiguration
will be updated.
domain_name: Option<String>
The domain to which the provider applies the availability configuration.
ews_provider: Option<EwsAvailabilityProvider>
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.
lambda_provider: Option<LambdaAvailabilityProvider>
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.
Implementations§
source§impl UpdateAvailabilityConfigurationInput
impl UpdateAvailabilityConfigurationInput
sourcepub fn organization_id(&self) -> Option<&str>
pub fn organization_id(&self) -> Option<&str>
The WorkMail organization for which the AvailabilityConfiguration
will be updated.
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
The domain to which the provider applies the availability configuration.
sourcepub fn ews_provider(&self) -> Option<&EwsAvailabilityProvider>
pub fn ews_provider(&self) -> Option<&EwsAvailabilityProvider>
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.
sourcepub fn lambda_provider(&self) -> Option<&LambdaAvailabilityProvider>
pub fn lambda_provider(&self) -> Option<&LambdaAvailabilityProvider>
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.
source§impl UpdateAvailabilityConfigurationInput
impl UpdateAvailabilityConfigurationInput
sourcepub fn builder() -> UpdateAvailabilityConfigurationInputBuilder
pub fn builder() -> UpdateAvailabilityConfigurationInputBuilder
Creates a new builder-style object to manufacture UpdateAvailabilityConfigurationInput
.
Trait Implementations§
source§impl Clone for UpdateAvailabilityConfigurationInput
impl Clone for UpdateAvailabilityConfigurationInput
source§fn clone(&self) -> UpdateAvailabilityConfigurationInput
fn clone(&self) -> UpdateAvailabilityConfigurationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<UpdateAvailabilityConfigurationInput> for UpdateAvailabilityConfigurationInput
impl PartialEq<UpdateAvailabilityConfigurationInput> for UpdateAvailabilityConfigurationInput
source§fn eq(&self, other: &UpdateAvailabilityConfigurationInput) -> bool
fn eq(&self, other: &UpdateAvailabilityConfigurationInput) -> bool
self
and other
values to be equal, and is used
by ==
.