This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-devicefarm/include/aws/devicefarm/model/IncompatibilityMessage.h

148 lines
5.2 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/devicefarm/DeviceFarm_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/devicefarm/model/DeviceAttribute.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace DeviceFarm
{
namespace Model
{
/**
* <p>Represents information about incompatibility.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/IncompatibilityMessage">AWS
* API Reference</a></p>
*/
class AWS_DEVICEFARM_API IncompatibilityMessage
{
public:
IncompatibilityMessage();
IncompatibilityMessage(Aws::Utils::Json::JsonView jsonValue);
IncompatibilityMessage& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>A message about the incompatibility.</p>
*/
inline const Aws::String& GetMessage() const{ return m_message; }
/**
* <p>A message about the incompatibility.</p>
*/
inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
/**
* <p>A message about the incompatibility.</p>
*/
inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
/**
* <p>A message about the incompatibility.</p>
*/
inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
/**
* <p>A message about the incompatibility.</p>
*/
inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
/**
* <p>A message about the incompatibility.</p>
*/
inline IncompatibilityMessage& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
/**
* <p>A message about the incompatibility.</p>
*/
inline IncompatibilityMessage& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
/**
* <p>A message about the incompatibility.</p>
*/
inline IncompatibilityMessage& WithMessage(const char* value) { SetMessage(value); return *this;}
/**
* <p>The type of incompatibility.</p> <p>Allowed values include:</p> <ul> <li>
* <p>ARN</p> </li> <li> <p>FORM_FACTOR (for example, phone or tablet)</p> </li>
* <li> <p>MANUFACTURER</p> </li> <li> <p>PLATFORM (for example, Android or
* iOS)</p> </li> <li> <p>REMOTE_ACCESS_ENABLED</p> </li> <li>
* <p>APPIUM_VERSION</p> </li> </ul>
*/
inline const DeviceAttribute& GetType() const{ return m_type; }
/**
* <p>The type of incompatibility.</p> <p>Allowed values include:</p> <ul> <li>
* <p>ARN</p> </li> <li> <p>FORM_FACTOR (for example, phone or tablet)</p> </li>
* <li> <p>MANUFACTURER</p> </li> <li> <p>PLATFORM (for example, Android or
* iOS)</p> </li> <li> <p>REMOTE_ACCESS_ENABLED</p> </li> <li>
* <p>APPIUM_VERSION</p> </li> </ul>
*/
inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
/**
* <p>The type of incompatibility.</p> <p>Allowed values include:</p> <ul> <li>
* <p>ARN</p> </li> <li> <p>FORM_FACTOR (for example, phone or tablet)</p> </li>
* <li> <p>MANUFACTURER</p> </li> <li> <p>PLATFORM (for example, Android or
* iOS)</p> </li> <li> <p>REMOTE_ACCESS_ENABLED</p> </li> <li>
* <p>APPIUM_VERSION</p> </li> </ul>
*/
inline void SetType(const DeviceAttribute& value) { m_typeHasBeenSet = true; m_type = value; }
/**
* <p>The type of incompatibility.</p> <p>Allowed values include:</p> <ul> <li>
* <p>ARN</p> </li> <li> <p>FORM_FACTOR (for example, phone or tablet)</p> </li>
* <li> <p>MANUFACTURER</p> </li> <li> <p>PLATFORM (for example, Android or
* iOS)</p> </li> <li> <p>REMOTE_ACCESS_ENABLED</p> </li> <li>
* <p>APPIUM_VERSION</p> </li> </ul>
*/
inline void SetType(DeviceAttribute&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
/**
* <p>The type of incompatibility.</p> <p>Allowed values include:</p> <ul> <li>
* <p>ARN</p> </li> <li> <p>FORM_FACTOR (for example, phone or tablet)</p> </li>
* <li> <p>MANUFACTURER</p> </li> <li> <p>PLATFORM (for example, Android or
* iOS)</p> </li> <li> <p>REMOTE_ACCESS_ENABLED</p> </li> <li>
* <p>APPIUM_VERSION</p> </li> </ul>
*/
inline IncompatibilityMessage& WithType(const DeviceAttribute& value) { SetType(value); return *this;}
/**
* <p>The type of incompatibility.</p> <p>Allowed values include:</p> <ul> <li>
* <p>ARN</p> </li> <li> <p>FORM_FACTOR (for example, phone or tablet)</p> </li>
* <li> <p>MANUFACTURER</p> </li> <li> <p>PLATFORM (for example, Android or
* iOS)</p> </li> <li> <p>REMOTE_ACCESS_ENABLED</p> </li> <li>
* <p>APPIUM_VERSION</p> </li> </ul>
*/
inline IncompatibilityMessage& WithType(DeviceAttribute&& value) { SetType(std::move(value)); return *this;}
private:
Aws::String m_message;
bool m_messageHasBeenSet;
DeviceAttribute m_type;
bool m_typeHasBeenSet;
};
} // namespace Model
} // namespace DeviceFarm
} // namespace Aws