Struct aws_sdk_workmail::operation::test_availability_configuration::TestAvailabilityConfigurationInput
source · #[non_exhaustive]pub struct TestAvailabilityConfigurationInput {
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 where the availability provider will be tested.
domain_name: Option<String>
The domain to which the provider applies. If this field is provided, a stored availability provider associated to this domain name will be tested.
ews_provider: Option<EwsAvailabilityProvider>
Describes an EWS based availability provider. This is only used as input to the service.
lambda_provider: Option<LambdaAvailabilityProvider>
Describes a Lambda based availability provider.
Implementations§
source§impl TestAvailabilityConfigurationInput
impl TestAvailabilityConfigurationInput
sourcepub fn organization_id(&self) -> Option<&str>
pub fn organization_id(&self) -> Option<&str>
The WorkMail organization where the availability provider will be tested.
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
The domain to which the provider applies. If this field is provided, a stored availability provider associated to this domain name will be tested.
sourcepub fn ews_provider(&self) -> Option<&EwsAvailabilityProvider>
pub fn ews_provider(&self) -> Option<&EwsAvailabilityProvider>
Describes an EWS based availability provider. This is only used as input to the service.
sourcepub fn lambda_provider(&self) -> Option<&LambdaAvailabilityProvider>
pub fn lambda_provider(&self) -> Option<&LambdaAvailabilityProvider>
Describes a Lambda based availability provider.
source§impl TestAvailabilityConfigurationInput
impl TestAvailabilityConfigurationInput
sourcepub fn builder() -> TestAvailabilityConfigurationInputBuilder
pub fn builder() -> TestAvailabilityConfigurationInputBuilder
Creates a new builder-style object to manufacture TestAvailabilityConfigurationInput
.
Trait Implementations§
source§impl Clone for TestAvailabilityConfigurationInput
impl Clone for TestAvailabilityConfigurationInput
source§fn clone(&self) -> TestAvailabilityConfigurationInput
fn clone(&self) -> TestAvailabilityConfigurationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<TestAvailabilityConfigurationInput> for TestAvailabilityConfigurationInput
impl PartialEq<TestAvailabilityConfigurationInput> for TestAvailabilityConfigurationInput
source§fn eq(&self, other: &TestAvailabilityConfigurationInput) -> bool
fn eq(&self, other: &TestAvailabilityConfigurationInput) -> bool
self
and other
values to be equal, and is used
by ==
.