/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace WorkMail { namespace Model { /** */ class UpdateAvailabilityConfigurationRequest : public WorkMailRequest { public: AWS_WORKMAIL_API UpdateAvailabilityConfigurationRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "UpdateAvailabilityConfiguration"; } AWS_WORKMAIL_API Aws::String SerializePayload() const override; AWS_WORKMAIL_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The WorkMail organization for which the * AvailabilityConfiguration will be updated.

*/ inline const Aws::String& GetOrganizationId() const{ return m_organizationId; } /** *

The WorkMail organization for which the * AvailabilityConfiguration will be updated.

*/ inline bool OrganizationIdHasBeenSet() const { return m_organizationIdHasBeenSet; } /** *

The WorkMail organization for which the * AvailabilityConfiguration will be updated.

*/ inline void SetOrganizationId(const Aws::String& value) { m_organizationIdHasBeenSet = true; m_organizationId = value; } /** *

The WorkMail organization for which the * AvailabilityConfiguration will be updated.

*/ inline void SetOrganizationId(Aws::String&& value) { m_organizationIdHasBeenSet = true; m_organizationId = std::move(value); } /** *

The WorkMail organization for which the * AvailabilityConfiguration will be updated.

*/ inline void SetOrganizationId(const char* value) { m_organizationIdHasBeenSet = true; m_organizationId.assign(value); } /** *

The WorkMail organization for which the * AvailabilityConfiguration will be updated.

*/ inline UpdateAvailabilityConfigurationRequest& WithOrganizationId(const Aws::String& value) { SetOrganizationId(value); return *this;} /** *

The WorkMail organization for which the * AvailabilityConfiguration will be updated.

*/ inline UpdateAvailabilityConfigurationRequest& WithOrganizationId(Aws::String&& value) { SetOrganizationId(std::move(value)); return *this;} /** *

The WorkMail organization for which the * AvailabilityConfiguration will be updated.

*/ inline UpdateAvailabilityConfigurationRequest& WithOrganizationId(const char* value) { SetOrganizationId(value); return *this;} /** *

The domain to which the provider applies the availability configuration.

*/ inline const Aws::String& GetDomainName() const{ return m_domainName; } /** *

The domain to which the provider applies the availability configuration.

*/ inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; } /** *

The domain to which the provider applies the availability configuration.

*/ inline void SetDomainName(const Aws::String& value) { m_domainNameHasBeenSet = true; m_domainName = value; } /** *

The domain to which the provider applies the availability configuration.

*/ inline void SetDomainName(Aws::String&& value) { m_domainNameHasBeenSet = true; m_domainName = std::move(value); } /** *

The domain to which the provider applies the availability configuration.

*/ inline void SetDomainName(const char* value) { m_domainNameHasBeenSet = true; m_domainName.assign(value); } /** *

The domain to which the provider applies the availability configuration.

*/ inline UpdateAvailabilityConfigurationRequest& WithDomainName(const Aws::String& value) { SetDomainName(value); return *this;} /** *

The domain to which the provider applies the availability configuration.

*/ inline UpdateAvailabilityConfigurationRequest& WithDomainName(Aws::String&& value) { SetDomainName(std::move(value)); return *this;} /** *

The domain to which the provider applies the availability configuration.

*/ inline UpdateAvailabilityConfigurationRequest& WithDomainName(const char* value) { SetDomainName(value); return *this;} /** *

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.

*/ inline const EwsAvailabilityProvider& GetEwsProvider() const{ return m_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.

*/ inline bool EwsProviderHasBeenSet() const { return m_ewsProviderHasBeenSet; } /** *

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.

*/ inline void SetEwsProvider(const EwsAvailabilityProvider& value) { m_ewsProviderHasBeenSet = true; m_ewsProvider = value; } /** *

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.

*/ inline void SetEwsProvider(EwsAvailabilityProvider&& value) { m_ewsProviderHasBeenSet = true; m_ewsProvider = std::move(value); } /** *

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.

*/ inline UpdateAvailabilityConfigurationRequest& WithEwsProvider(const EwsAvailabilityProvider& value) { SetEwsProvider(value); return *this;} /** *

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.

*/ inline UpdateAvailabilityConfigurationRequest& WithEwsProvider(EwsAvailabilityProvider&& value) { SetEwsProvider(std::move(value)); return *this;} /** *

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.

*/ inline const LambdaAvailabilityProvider& GetLambdaProvider() const{ return m_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.

*/ inline bool LambdaProviderHasBeenSet() const { return m_lambdaProviderHasBeenSet; } /** *

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.

*/ inline void SetLambdaProvider(const LambdaAvailabilityProvider& value) { m_lambdaProviderHasBeenSet = true; m_lambdaProvider = value; } /** *

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.

*/ inline void SetLambdaProvider(LambdaAvailabilityProvider&& value) { m_lambdaProviderHasBeenSet = true; m_lambdaProvider = std::move(value); } /** *

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.

*/ inline UpdateAvailabilityConfigurationRequest& WithLambdaProvider(const LambdaAvailabilityProvider& value) { SetLambdaProvider(value); return *this;} /** *

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.

*/ inline UpdateAvailabilityConfigurationRequest& WithLambdaProvider(LambdaAvailabilityProvider&& value) { SetLambdaProvider(std::move(value)); return *this;} private: Aws::String m_organizationId; bool m_organizationIdHasBeenSet = false; Aws::String m_domainName; bool m_domainNameHasBeenSet = false; EwsAvailabilityProvider m_ewsProvider; bool m_ewsProviderHasBeenSet = false; LambdaAvailabilityProvider m_lambdaProvider; bool m_lambdaProviderHasBeenSet = false; }; } // namespace Model } // namespace WorkMail } // namespace Aws