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-codestar/include/aws/codestar/model/ProjectSummary.h

133 lines
3.7 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/codestar/CodeStar_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace CodeStar
{
namespace Model
{
/**
* <p>Information about the metadata for a project.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/ProjectSummary">AWS
* API Reference</a></p>
*/
class AWS_CODESTAR_API ProjectSummary
{
public:
ProjectSummary();
ProjectSummary(Aws::Utils::Json::JsonView jsonValue);
ProjectSummary& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The ID of the project.</p>
*/
inline const Aws::String& GetProjectId() const{ return m_projectId; }
/**
* <p>The ID of the project.</p>
*/
inline bool ProjectIdHasBeenSet() const { return m_projectIdHasBeenSet; }
/**
* <p>The ID of the project.</p>
*/
inline void SetProjectId(const Aws::String& value) { m_projectIdHasBeenSet = true; m_projectId = value; }
/**
* <p>The ID of the project.</p>
*/
inline void SetProjectId(Aws::String&& value) { m_projectIdHasBeenSet = true; m_projectId = std::move(value); }
/**
* <p>The ID of the project.</p>
*/
inline void SetProjectId(const char* value) { m_projectIdHasBeenSet = true; m_projectId.assign(value); }
/**
* <p>The ID of the project.</p>
*/
inline ProjectSummary& WithProjectId(const Aws::String& value) { SetProjectId(value); return *this;}
/**
* <p>The ID of the project.</p>
*/
inline ProjectSummary& WithProjectId(Aws::String&& value) { SetProjectId(std::move(value)); return *this;}
/**
* <p>The ID of the project.</p>
*/
inline ProjectSummary& WithProjectId(const char* value) { SetProjectId(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the project.</p>
*/
inline const Aws::String& GetProjectArn() const{ return m_projectArn; }
/**
* <p>The Amazon Resource Name (ARN) of the project.</p>
*/
inline bool ProjectArnHasBeenSet() const { return m_projectArnHasBeenSet; }
/**
* <p>The Amazon Resource Name (ARN) of the project.</p>
*/
inline void SetProjectArn(const Aws::String& value) { m_projectArnHasBeenSet = true; m_projectArn = value; }
/**
* <p>The Amazon Resource Name (ARN) of the project.</p>
*/
inline void SetProjectArn(Aws::String&& value) { m_projectArnHasBeenSet = true; m_projectArn = std::move(value); }
/**
* <p>The Amazon Resource Name (ARN) of the project.</p>
*/
inline void SetProjectArn(const char* value) { m_projectArnHasBeenSet = true; m_projectArn.assign(value); }
/**
* <p>The Amazon Resource Name (ARN) of the project.</p>
*/
inline ProjectSummary& WithProjectArn(const Aws::String& value) { SetProjectArn(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the project.</p>
*/
inline ProjectSummary& WithProjectArn(Aws::String&& value) { SetProjectArn(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the project.</p>
*/
inline ProjectSummary& WithProjectArn(const char* value) { SetProjectArn(value); return *this;}
private:
Aws::String m_projectId;
bool m_projectIdHasBeenSet;
Aws::String m_projectArn;
bool m_projectArnHasBeenSet;
};
} // namespace Model
} // namespace CodeStar
} // namespace Aws