Struct aws_sdk_workmail::operation::create_availability_configuration::CreateAvailabilityConfigurationInput
source · #[non_exhaustive]pub struct CreateAvailabilityConfigurationInput {
pub client_token: Option<String>,
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.client_token: Option<String>
An idempotent token that ensures that an API request is executed only once.
organization_id: Option<String>
The WorkMail organization for which the AvailabilityConfiguration
will be created.
domain_name: Option<String>
The domain to which the provider applies.
ews_provider: Option<EwsAvailabilityProvider>
Exchange Web Services (EWS) availability provider definition. The request must contain exactly one provider definition, either EwsProvider
or LambdaProvider
.
lambda_provider: Option<LambdaAvailabilityProvider>
Lambda availability provider definition. The request must contain exactly one provider definition, either EwsProvider
or LambdaProvider
.
Implementations§
source§impl CreateAvailabilityConfigurationInput
impl CreateAvailabilityConfigurationInput
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
An idempotent token that ensures that an API request is executed only once.
sourcepub fn organization_id(&self) -> Option<&str>
pub fn organization_id(&self) -> Option<&str>
The WorkMail organization for which the AvailabilityConfiguration
will be created.
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
The domain to which the provider applies.
sourcepub fn ews_provider(&self) -> Option<&EwsAvailabilityProvider>
pub fn ews_provider(&self) -> Option<&EwsAvailabilityProvider>
Exchange Web Services (EWS) availability provider definition. The request must contain exactly one provider definition, either EwsProvider
or LambdaProvider
.
sourcepub fn lambda_provider(&self) -> Option<&LambdaAvailabilityProvider>
pub fn lambda_provider(&self) -> Option<&LambdaAvailabilityProvider>
Lambda availability provider definition. The request must contain exactly one provider definition, either EwsProvider
or LambdaProvider
.
source§impl CreateAvailabilityConfigurationInput
impl CreateAvailabilityConfigurationInput
sourcepub fn builder() -> CreateAvailabilityConfigurationInputBuilder
pub fn builder() -> CreateAvailabilityConfigurationInputBuilder
Creates a new builder-style object to manufacture CreateAvailabilityConfigurationInput
.
Trait Implementations§
source§impl Clone for CreateAvailabilityConfigurationInput
impl Clone for CreateAvailabilityConfigurationInput
source§fn clone(&self) -> CreateAvailabilityConfigurationInput
fn clone(&self) -> CreateAvailabilityConfigurationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CreateAvailabilityConfigurationInput
impl PartialEq for CreateAvailabilityConfigurationInput
source§fn eq(&self, other: &CreateAvailabilityConfigurationInput) -> bool
fn eq(&self, other: &CreateAvailabilityConfigurationInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateAvailabilityConfigurationInput
Auto Trait Implementations§
impl Freeze for CreateAvailabilityConfigurationInput
impl RefUnwindSafe for CreateAvailabilityConfigurationInput
impl Send for CreateAvailabilityConfigurationInput
impl Sync for CreateAvailabilityConfigurationInput
impl Unpin for CreateAvailabilityConfigurationInput
impl UnwindSafe for CreateAvailabilityConfigurationInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more