/** * 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 UpdateMobileDeviceAccessRuleRequest : public WorkMailRequest { public: AWS_WORKMAIL_API UpdateMobileDeviceAccessRuleRequest(); // 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 "UpdateMobileDeviceAccessRule"; } AWS_WORKMAIL_API Aws::String SerializePayload() const override; AWS_WORKMAIL_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The WorkMail organization under which the rule will be updated.

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

The WorkMail organization under which the rule will be updated.

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

The WorkMail organization under which the rule will be updated.

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

The WorkMail organization under which the rule will be updated.

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

The WorkMail organization under which the rule will be updated.

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

The WorkMail organization under which the rule will be updated.

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

The WorkMail organization under which the rule will be updated.

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

The WorkMail organization under which the rule will be updated.

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

The identifier of the rule to be updated.

*/ inline const Aws::String& GetMobileDeviceAccessRuleId() const{ return m_mobileDeviceAccessRuleId; } /** *

The identifier of the rule to be updated.

*/ inline bool MobileDeviceAccessRuleIdHasBeenSet() const { return m_mobileDeviceAccessRuleIdHasBeenSet; } /** *

The identifier of the rule to be updated.

*/ inline void SetMobileDeviceAccessRuleId(const Aws::String& value) { m_mobileDeviceAccessRuleIdHasBeenSet = true; m_mobileDeviceAccessRuleId = value; } /** *

The identifier of the rule to be updated.

*/ inline void SetMobileDeviceAccessRuleId(Aws::String&& value) { m_mobileDeviceAccessRuleIdHasBeenSet = true; m_mobileDeviceAccessRuleId = std::move(value); } /** *

The identifier of the rule to be updated.

*/ inline void SetMobileDeviceAccessRuleId(const char* value) { m_mobileDeviceAccessRuleIdHasBeenSet = true; m_mobileDeviceAccessRuleId.assign(value); } /** *

The identifier of the rule to be updated.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithMobileDeviceAccessRuleId(const Aws::String& value) { SetMobileDeviceAccessRuleId(value); return *this;} /** *

The identifier of the rule to be updated.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithMobileDeviceAccessRuleId(Aws::String&& value) { SetMobileDeviceAccessRuleId(std::move(value)); return *this;} /** *

The identifier of the rule to be updated.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithMobileDeviceAccessRuleId(const char* value) { SetMobileDeviceAccessRuleId(value); return *this;} /** *

The updated rule name.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The updated rule name.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The updated rule name.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The updated rule name.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The updated rule name.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The updated rule name.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The updated rule name.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The updated rule name.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithName(const char* value) { SetName(value); return *this;} /** *

The updated rule description.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

The updated rule description.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

The updated rule description.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

The updated rule description.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

The updated rule description.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

The updated rule description.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

The updated rule description.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

The updated rule description.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

The effect of the rule when it matches. Allowed values are ALLOW * or DENY.

*/ inline const MobileDeviceAccessRuleEffect& GetEffect() const{ return m_effect; } /** *

The effect of the rule when it matches. Allowed values are ALLOW * or DENY.

*/ inline bool EffectHasBeenSet() const { return m_effectHasBeenSet; } /** *

The effect of the rule when it matches. Allowed values are ALLOW * or DENY.

*/ inline void SetEffect(const MobileDeviceAccessRuleEffect& value) { m_effectHasBeenSet = true; m_effect = value; } /** *

The effect of the rule when it matches. Allowed values are ALLOW * or DENY.

*/ inline void SetEffect(MobileDeviceAccessRuleEffect&& value) { m_effectHasBeenSet = true; m_effect = std::move(value); } /** *

The effect of the rule when it matches. Allowed values are ALLOW * or DENY.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithEffect(const MobileDeviceAccessRuleEffect& value) { SetEffect(value); return *this;} /** *

The effect of the rule when it matches. Allowed values are ALLOW * or DENY.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithEffect(MobileDeviceAccessRuleEffect&& value) { SetEffect(std::move(value)); return *this;} /** *

Device types that the updated rule will match.

*/ inline const Aws::Vector& GetDeviceTypes() const{ return m_deviceTypes; } /** *

Device types that the updated rule will match.

*/ inline bool DeviceTypesHasBeenSet() const { return m_deviceTypesHasBeenSet; } /** *

Device types that the updated rule will match.

*/ inline void SetDeviceTypes(const Aws::Vector& value) { m_deviceTypesHasBeenSet = true; m_deviceTypes = value; } /** *

Device types that the updated rule will match.

*/ inline void SetDeviceTypes(Aws::Vector&& value) { m_deviceTypesHasBeenSet = true; m_deviceTypes = std::move(value); } /** *

Device types that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithDeviceTypes(const Aws::Vector& value) { SetDeviceTypes(value); return *this;} /** *

Device types that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithDeviceTypes(Aws::Vector&& value) { SetDeviceTypes(std::move(value)); return *this;} /** *

Device types that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddDeviceTypes(const Aws::String& value) { m_deviceTypesHasBeenSet = true; m_deviceTypes.push_back(value); return *this; } /** *

Device types that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddDeviceTypes(Aws::String&& value) { m_deviceTypesHasBeenSet = true; m_deviceTypes.push_back(std::move(value)); return *this; } /** *

Device types that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddDeviceTypes(const char* value) { m_deviceTypesHasBeenSet = true; m_deviceTypes.push_back(value); return *this; } /** *

Device types that the updated rule will not match. All other device * types will match.

*/ inline const Aws::Vector& GetNotDeviceTypes() const{ return m_notDeviceTypes; } /** *

Device types that the updated rule will not match. All other device * types will match.

*/ inline bool NotDeviceTypesHasBeenSet() const { return m_notDeviceTypesHasBeenSet; } /** *

Device types that the updated rule will not match. All other device * types will match.

*/ inline void SetNotDeviceTypes(const Aws::Vector& value) { m_notDeviceTypesHasBeenSet = true; m_notDeviceTypes = value; } /** *

Device types that the updated rule will not match. All other device * types will match.

*/ inline void SetNotDeviceTypes(Aws::Vector&& value) { m_notDeviceTypesHasBeenSet = true; m_notDeviceTypes = std::move(value); } /** *

Device types that the updated rule will not match. All other device * types will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithNotDeviceTypes(const Aws::Vector& value) { SetNotDeviceTypes(value); return *this;} /** *

Device types that the updated rule will not match. All other device * types will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithNotDeviceTypes(Aws::Vector&& value) { SetNotDeviceTypes(std::move(value)); return *this;} /** *

Device types that the updated rule will not match. All other device * types will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddNotDeviceTypes(const Aws::String& value) { m_notDeviceTypesHasBeenSet = true; m_notDeviceTypes.push_back(value); return *this; } /** *

Device types that the updated rule will not match. All other device * types will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddNotDeviceTypes(Aws::String&& value) { m_notDeviceTypesHasBeenSet = true; m_notDeviceTypes.push_back(std::move(value)); return *this; } /** *

Device types that the updated rule will not match. All other device * types will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddNotDeviceTypes(const char* value) { m_notDeviceTypesHasBeenSet = true; m_notDeviceTypes.push_back(value); return *this; } /** *

Device models that the updated rule will match.

*/ inline const Aws::Vector& GetDeviceModels() const{ return m_deviceModels; } /** *

Device models that the updated rule will match.

*/ inline bool DeviceModelsHasBeenSet() const { return m_deviceModelsHasBeenSet; } /** *

Device models that the updated rule will match.

*/ inline void SetDeviceModels(const Aws::Vector& value) { m_deviceModelsHasBeenSet = true; m_deviceModels = value; } /** *

Device models that the updated rule will match.

*/ inline void SetDeviceModels(Aws::Vector&& value) { m_deviceModelsHasBeenSet = true; m_deviceModels = std::move(value); } /** *

Device models that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithDeviceModels(const Aws::Vector& value) { SetDeviceModels(value); return *this;} /** *

Device models that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithDeviceModels(Aws::Vector&& value) { SetDeviceModels(std::move(value)); return *this;} /** *

Device models that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddDeviceModels(const Aws::String& value) { m_deviceModelsHasBeenSet = true; m_deviceModels.push_back(value); return *this; } /** *

Device models that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddDeviceModels(Aws::String&& value) { m_deviceModelsHasBeenSet = true; m_deviceModels.push_back(std::move(value)); return *this; } /** *

Device models that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddDeviceModels(const char* value) { m_deviceModelsHasBeenSet = true; m_deviceModels.push_back(value); return *this; } /** *

Device models that the updated rule will not match. All other device * models will match.

*/ inline const Aws::Vector& GetNotDeviceModels() const{ return m_notDeviceModels; } /** *

Device models that the updated rule will not match. All other device * models will match.

*/ inline bool NotDeviceModelsHasBeenSet() const { return m_notDeviceModelsHasBeenSet; } /** *

Device models that the updated rule will not match. All other device * models will match.

*/ inline void SetNotDeviceModels(const Aws::Vector& value) { m_notDeviceModelsHasBeenSet = true; m_notDeviceModels = value; } /** *

Device models that the updated rule will not match. All other device * models will match.

*/ inline void SetNotDeviceModels(Aws::Vector&& value) { m_notDeviceModelsHasBeenSet = true; m_notDeviceModels = std::move(value); } /** *

Device models that the updated rule will not match. All other device * models will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithNotDeviceModels(const Aws::Vector& value) { SetNotDeviceModels(value); return *this;} /** *

Device models that the updated rule will not match. All other device * models will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithNotDeviceModels(Aws::Vector&& value) { SetNotDeviceModels(std::move(value)); return *this;} /** *

Device models that the updated rule will not match. All other device * models will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddNotDeviceModels(const Aws::String& value) { m_notDeviceModelsHasBeenSet = true; m_notDeviceModels.push_back(value); return *this; } /** *

Device models that the updated rule will not match. All other device * models will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddNotDeviceModels(Aws::String&& value) { m_notDeviceModelsHasBeenSet = true; m_notDeviceModels.push_back(std::move(value)); return *this; } /** *

Device models that the updated rule will not match. All other device * models will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddNotDeviceModels(const char* value) { m_notDeviceModelsHasBeenSet = true; m_notDeviceModels.push_back(value); return *this; } /** *

Device operating systems that the updated rule will match.

*/ inline const Aws::Vector& GetDeviceOperatingSystems() const{ return m_deviceOperatingSystems; } /** *

Device operating systems that the updated rule will match.

*/ inline bool DeviceOperatingSystemsHasBeenSet() const { return m_deviceOperatingSystemsHasBeenSet; } /** *

Device operating systems that the updated rule will match.

*/ inline void SetDeviceOperatingSystems(const Aws::Vector& value) { m_deviceOperatingSystemsHasBeenSet = true; m_deviceOperatingSystems = value; } /** *

Device operating systems that the updated rule will match.

*/ inline void SetDeviceOperatingSystems(Aws::Vector&& value) { m_deviceOperatingSystemsHasBeenSet = true; m_deviceOperatingSystems = std::move(value); } /** *

Device operating systems that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithDeviceOperatingSystems(const Aws::Vector& value) { SetDeviceOperatingSystems(value); return *this;} /** *

Device operating systems that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithDeviceOperatingSystems(Aws::Vector&& value) { SetDeviceOperatingSystems(std::move(value)); return *this;} /** *

Device operating systems that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddDeviceOperatingSystems(const Aws::String& value) { m_deviceOperatingSystemsHasBeenSet = true; m_deviceOperatingSystems.push_back(value); return *this; } /** *

Device operating systems that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddDeviceOperatingSystems(Aws::String&& value) { m_deviceOperatingSystemsHasBeenSet = true; m_deviceOperatingSystems.push_back(std::move(value)); return *this; } /** *

Device operating systems that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddDeviceOperatingSystems(const char* value) { m_deviceOperatingSystemsHasBeenSet = true; m_deviceOperatingSystems.push_back(value); return *this; } /** *

Device operating systems that the updated rule will not match. All * other device operating systems will match.

*/ inline const Aws::Vector& GetNotDeviceOperatingSystems() const{ return m_notDeviceOperatingSystems; } /** *

Device operating systems that the updated rule will not match. All * other device operating systems will match.

*/ inline bool NotDeviceOperatingSystemsHasBeenSet() const { return m_notDeviceOperatingSystemsHasBeenSet; } /** *

Device operating systems that the updated rule will not match. All * other device operating systems will match.

*/ inline void SetNotDeviceOperatingSystems(const Aws::Vector& value) { m_notDeviceOperatingSystemsHasBeenSet = true; m_notDeviceOperatingSystems = value; } /** *

Device operating systems that the updated rule will not match. All * other device operating systems will match.

*/ inline void SetNotDeviceOperatingSystems(Aws::Vector&& value) { m_notDeviceOperatingSystemsHasBeenSet = true; m_notDeviceOperatingSystems = std::move(value); } /** *

Device operating systems that the updated rule will not match. All * other device operating systems will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithNotDeviceOperatingSystems(const Aws::Vector& value) { SetNotDeviceOperatingSystems(value); return *this;} /** *

Device operating systems that the updated rule will not match. All * other device operating systems will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithNotDeviceOperatingSystems(Aws::Vector&& value) { SetNotDeviceOperatingSystems(std::move(value)); return *this;} /** *

Device operating systems that the updated rule will not match. All * other device operating systems will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddNotDeviceOperatingSystems(const Aws::String& value) { m_notDeviceOperatingSystemsHasBeenSet = true; m_notDeviceOperatingSystems.push_back(value); return *this; } /** *

Device operating systems that the updated rule will not match. All * other device operating systems will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddNotDeviceOperatingSystems(Aws::String&& value) { m_notDeviceOperatingSystemsHasBeenSet = true; m_notDeviceOperatingSystems.push_back(std::move(value)); return *this; } /** *

Device operating systems that the updated rule will not match. All * other device operating systems will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddNotDeviceOperatingSystems(const char* value) { m_notDeviceOperatingSystemsHasBeenSet = true; m_notDeviceOperatingSystems.push_back(value); return *this; } /** *

User agents that the updated rule will match.

*/ inline const Aws::Vector& GetDeviceUserAgents() const{ return m_deviceUserAgents; } /** *

User agents that the updated rule will match.

*/ inline bool DeviceUserAgentsHasBeenSet() const { return m_deviceUserAgentsHasBeenSet; } /** *

User agents that the updated rule will match.

*/ inline void SetDeviceUserAgents(const Aws::Vector& value) { m_deviceUserAgentsHasBeenSet = true; m_deviceUserAgents = value; } /** *

User agents that the updated rule will match.

*/ inline void SetDeviceUserAgents(Aws::Vector&& value) { m_deviceUserAgentsHasBeenSet = true; m_deviceUserAgents = std::move(value); } /** *

User agents that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithDeviceUserAgents(const Aws::Vector& value) { SetDeviceUserAgents(value); return *this;} /** *

User agents that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithDeviceUserAgents(Aws::Vector&& value) { SetDeviceUserAgents(std::move(value)); return *this;} /** *

User agents that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddDeviceUserAgents(const Aws::String& value) { m_deviceUserAgentsHasBeenSet = true; m_deviceUserAgents.push_back(value); return *this; } /** *

User agents that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddDeviceUserAgents(Aws::String&& value) { m_deviceUserAgentsHasBeenSet = true; m_deviceUserAgents.push_back(std::move(value)); return *this; } /** *

User agents that the updated rule will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddDeviceUserAgents(const char* value) { m_deviceUserAgentsHasBeenSet = true; m_deviceUserAgents.push_back(value); return *this; } /** *

User agents that the updated rule will not match. All other user * agents will match.

*/ inline const Aws::Vector& GetNotDeviceUserAgents() const{ return m_notDeviceUserAgents; } /** *

User agents that the updated rule will not match. All other user * agents will match.

*/ inline bool NotDeviceUserAgentsHasBeenSet() const { return m_notDeviceUserAgentsHasBeenSet; } /** *

User agents that the updated rule will not match. All other user * agents will match.

*/ inline void SetNotDeviceUserAgents(const Aws::Vector& value) { m_notDeviceUserAgentsHasBeenSet = true; m_notDeviceUserAgents = value; } /** *

User agents that the updated rule will not match. All other user * agents will match.

*/ inline void SetNotDeviceUserAgents(Aws::Vector&& value) { m_notDeviceUserAgentsHasBeenSet = true; m_notDeviceUserAgents = std::move(value); } /** *

User agents that the updated rule will not match. All other user * agents will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithNotDeviceUserAgents(const Aws::Vector& value) { SetNotDeviceUserAgents(value); return *this;} /** *

User agents that the updated rule will not match. All other user * agents will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& WithNotDeviceUserAgents(Aws::Vector&& value) { SetNotDeviceUserAgents(std::move(value)); return *this;} /** *

User agents that the updated rule will not match. All other user * agents will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddNotDeviceUserAgents(const Aws::String& value) { m_notDeviceUserAgentsHasBeenSet = true; m_notDeviceUserAgents.push_back(value); return *this; } /** *

User agents that the updated rule will not match. All other user * agents will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddNotDeviceUserAgents(Aws::String&& value) { m_notDeviceUserAgentsHasBeenSet = true; m_notDeviceUserAgents.push_back(std::move(value)); return *this; } /** *

User agents that the updated rule will not match. All other user * agents will match.

*/ inline UpdateMobileDeviceAccessRuleRequest& AddNotDeviceUserAgents(const char* value) { m_notDeviceUserAgentsHasBeenSet = true; m_notDeviceUserAgents.push_back(value); return *this; } private: Aws::String m_organizationId; bool m_organizationIdHasBeenSet = false; Aws::String m_mobileDeviceAccessRuleId; bool m_mobileDeviceAccessRuleIdHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; MobileDeviceAccessRuleEffect m_effect; bool m_effectHasBeenSet = false; Aws::Vector m_deviceTypes; bool m_deviceTypesHasBeenSet = false; Aws::Vector m_notDeviceTypes; bool m_notDeviceTypesHasBeenSet = false; Aws::Vector m_deviceModels; bool m_deviceModelsHasBeenSet = false; Aws::Vector m_notDeviceModels; bool m_notDeviceModelsHasBeenSet = false; Aws::Vector m_deviceOperatingSystems; bool m_deviceOperatingSystemsHasBeenSet = false; Aws::Vector m_notDeviceOperatingSystems; bool m_notDeviceOperatingSystemsHasBeenSet = false; Aws::Vector m_deviceUserAgents; bool m_deviceUserAgentsHasBeenSet = false; Aws::Vector m_notDeviceUserAgents; bool m_notDeviceUserAgentsHasBeenSet = false; }; } // namespace Model } // namespace WorkMail } // namespace Aws