/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Template version source data.See Also:
AWS
* API Reference
An S3 source object that includes the template bundle S3 path and name for a * template minor version.
*/ inline const S3ObjectSource& GetS3() const{ return m_s3; } /** *An S3 source object that includes the template bundle S3 path and name for a * template minor version.
*/ inline bool S3HasBeenSet() const { return m_s3HasBeenSet; } /** *An S3 source object that includes the template bundle S3 path and name for a * template minor version.
*/ inline void SetS3(const S3ObjectSource& value) { m_s3HasBeenSet = true; m_s3 = value; } /** *An S3 source object that includes the template bundle S3 path and name for a * template minor version.
*/ inline void SetS3(S3ObjectSource&& value) { m_s3HasBeenSet = true; m_s3 = std::move(value); } /** *An S3 source object that includes the template bundle S3 path and name for a * template minor version.
*/ inline TemplateVersionSourceInput& WithS3(const S3ObjectSource& value) { SetS3(value); return *this;} /** *An S3 source object that includes the template bundle S3 path and name for a * template minor version.
*/ inline TemplateVersionSourceInput& WithS3(S3ObjectSource&& value) { SetS3(std::move(value)); return *this;} private: S3ObjectSource m_s3; bool m_s3HasBeenSet = false; }; } // namespace Model } // namespace Proton } // namespace Aws