87 lines
2.4 KiB
C
87 lines
2.4 KiB
C
|
|
/**
|
|||
|
|
* 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/codestar/model/S3Location.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
class JsonView;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace CodeStar
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The location where the source code files provided with the project request
|
|||
|
|
* are stored. AWS CodeStar retrieves the files during project
|
|||
|
|
* creation.</p><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/CodeSource">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_CODESTAR_API CodeSource
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
CodeSource();
|
|||
|
|
CodeSource(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
CodeSource& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Information about the Amazon S3 location where the source code files provided
|
|||
|
|
* with the project request are stored. </p>
|
|||
|
|
*/
|
|||
|
|
inline const S3Location& GetS3() const{ return m_s3; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Information about the Amazon S3 location where the source code files provided
|
|||
|
|
* with the project request are stored. </p>
|
|||
|
|
*/
|
|||
|
|
inline bool S3HasBeenSet() const { return m_s3HasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Information about the Amazon S3 location where the source code files provided
|
|||
|
|
* with the project request are stored. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetS3(const S3Location& value) { m_s3HasBeenSet = true; m_s3 = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Information about the Amazon S3 location where the source code files provided
|
|||
|
|
* with the project request are stored. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetS3(S3Location&& value) { m_s3HasBeenSet = true; m_s3 = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Information about the Amazon S3 location where the source code files provided
|
|||
|
|
* with the project request are stored. </p>
|
|||
|
|
*/
|
|||
|
|
inline CodeSource& WithS3(const S3Location& value) { SetS3(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Information about the Amazon S3 location where the source code files provided
|
|||
|
|
* with the project request are stored. </p>
|
|||
|
|
*/
|
|||
|
|
inline CodeSource& WithS3(S3Location&& value) { SetS3(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
S3Location m_s3;
|
|||
|
|
bool m_s3HasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace CodeStar
|
|||
|
|
} // namespace Aws
|