197 lines
5.4 KiB
C++
197 lines
5.4 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/core/utils/DateTime.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace DeviceFarm
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Represents an operating-system neutral workspace for running and managing
|
|
* tests.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/Project">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_DEVICEFARM_API Project
|
|
{
|
|
public:
|
|
Project();
|
|
Project(Aws::Utils::Json::JsonView jsonValue);
|
|
Project& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>The project's ARN.</p>
|
|
*/
|
|
inline const Aws::String& GetArn() const{ return m_arn; }
|
|
|
|
/**
|
|
* <p>The project's ARN.</p>
|
|
*/
|
|
inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The project's ARN.</p>
|
|
*/
|
|
inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
|
|
|
|
/**
|
|
* <p>The project's ARN.</p>
|
|
*/
|
|
inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
|
|
|
|
/**
|
|
* <p>The project's ARN.</p>
|
|
*/
|
|
inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
|
|
|
|
/**
|
|
* <p>The project's ARN.</p>
|
|
*/
|
|
inline Project& WithArn(const Aws::String& value) { SetArn(value); return *this;}
|
|
|
|
/**
|
|
* <p>The project's ARN.</p>
|
|
*/
|
|
inline Project& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The project's ARN.</p>
|
|
*/
|
|
inline Project& WithArn(const char* value) { SetArn(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The project's name.</p>
|
|
*/
|
|
inline const Aws::String& GetName() const{ return m_name; }
|
|
|
|
/**
|
|
* <p>The project's name.</p>
|
|
*/
|
|
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The project's name.</p>
|
|
*/
|
|
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
|
|
|
|
/**
|
|
* <p>The project's name.</p>
|
|
*/
|
|
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
|
|
|
|
/**
|
|
* <p>The project's name.</p>
|
|
*/
|
|
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
|
|
|
|
/**
|
|
* <p>The project's name.</p>
|
|
*/
|
|
inline Project& WithName(const Aws::String& value) { SetName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The project's name.</p>
|
|
*/
|
|
inline Project& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The project's name.</p>
|
|
*/
|
|
inline Project& WithName(const char* value) { SetName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The default number of minutes (at the project level) a test run executes
|
|
* before it times out. The default value is 150 minutes.</p>
|
|
*/
|
|
inline int GetDefaultJobTimeoutMinutes() const{ return m_defaultJobTimeoutMinutes; }
|
|
|
|
/**
|
|
* <p>The default number of minutes (at the project level) a test run executes
|
|
* before it times out. The default value is 150 minutes.</p>
|
|
*/
|
|
inline bool DefaultJobTimeoutMinutesHasBeenSet() const { return m_defaultJobTimeoutMinutesHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The default number of minutes (at the project level) a test run executes
|
|
* before it times out. The default value is 150 minutes.</p>
|
|
*/
|
|
inline void SetDefaultJobTimeoutMinutes(int value) { m_defaultJobTimeoutMinutesHasBeenSet = true; m_defaultJobTimeoutMinutes = value; }
|
|
|
|
/**
|
|
* <p>The default number of minutes (at the project level) a test run executes
|
|
* before it times out. The default value is 150 minutes.</p>
|
|
*/
|
|
inline Project& WithDefaultJobTimeoutMinutes(int value) { SetDefaultJobTimeoutMinutes(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>When the project was created.</p>
|
|
*/
|
|
inline const Aws::Utils::DateTime& GetCreated() const{ return m_created; }
|
|
|
|
/**
|
|
* <p>When the project was created.</p>
|
|
*/
|
|
inline bool CreatedHasBeenSet() const { return m_createdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>When the project was created.</p>
|
|
*/
|
|
inline void SetCreated(const Aws::Utils::DateTime& value) { m_createdHasBeenSet = true; m_created = value; }
|
|
|
|
/**
|
|
* <p>When the project was created.</p>
|
|
*/
|
|
inline void SetCreated(Aws::Utils::DateTime&& value) { m_createdHasBeenSet = true; m_created = std::move(value); }
|
|
|
|
/**
|
|
* <p>When the project was created.</p>
|
|
*/
|
|
inline Project& WithCreated(const Aws::Utils::DateTime& value) { SetCreated(value); return *this;}
|
|
|
|
/**
|
|
* <p>When the project was created.</p>
|
|
*/
|
|
inline Project& WithCreated(Aws::Utils::DateTime&& value) { SetCreated(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_arn;
|
|
bool m_arnHasBeenSet;
|
|
|
|
Aws::String m_name;
|
|
bool m_nameHasBeenSet;
|
|
|
|
int m_defaultJobTimeoutMinutes;
|
|
bool m_defaultJobTimeoutMinutesHasBeenSet;
|
|
|
|
Aws::Utils::DateTime m_created;
|
|
bool m_createdHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace DeviceFarm
|
|
} // namespace Aws
|