/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The Amazon S3 location where the toolchain template file provided with the
* project request is stored. AWS CodeStar retrieves the file during project
* creation.See Also:
AWS
* API Reference
The Amazon S3 bucket where the toolchain template file provided with the * project request is stored.
*/ inline const S3Location& GetS3() const{ return m_s3; } /** *The Amazon S3 bucket where the toolchain template file provided with the * project request is stored.
*/ inline bool S3HasBeenSet() const { return m_s3HasBeenSet; } /** *The Amazon S3 bucket where the toolchain template file provided with the * project request is stored.
*/ inline void SetS3(const S3Location& value) { m_s3HasBeenSet = true; m_s3 = value; } /** *The Amazon S3 bucket where the toolchain template file provided with the * project request is stored.
*/ inline void SetS3(S3Location&& value) { m_s3HasBeenSet = true; m_s3 = std::move(value); } /** *The Amazon S3 bucket where the toolchain template file provided with the * project request is stored.
*/ inline ToolchainSource& WithS3(const S3Location& value) { SetS3(value); return *this;} /** *The Amazon S3 bucket where the toolchain template file provided with the * project request is stored.
*/ inline ToolchainSource& WithS3(S3Location&& value) { SetS3(std::move(value)); return *this;} private: S3Location m_s3; bool m_s3HasBeenSet = false; }; } // namespace Model } // namespace CodeStar } // namespace Aws