/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Panorama { namespace Model { /** *

A package version input configuration.

See Also:

AWS * API Reference

*/ class PackageVersionInputConfig { public: AWS_PANORAMA_API PackageVersionInputConfig(); AWS_PANORAMA_API PackageVersionInputConfig(Aws::Utils::Json::JsonView jsonValue); AWS_PANORAMA_API PackageVersionInputConfig& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_PANORAMA_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

A location in Amazon S3.

*/ inline const S3Location& GetS3Location() const{ return m_s3Location; } /** *

A location in Amazon S3.

*/ inline bool S3LocationHasBeenSet() const { return m_s3LocationHasBeenSet; } /** *

A location in Amazon S3.

*/ inline void SetS3Location(const S3Location& value) { m_s3LocationHasBeenSet = true; m_s3Location = value; } /** *

A location in Amazon S3.

*/ inline void SetS3Location(S3Location&& value) { m_s3LocationHasBeenSet = true; m_s3Location = std::move(value); } /** *

A location in Amazon S3.

*/ inline PackageVersionInputConfig& WithS3Location(const S3Location& value) { SetS3Location(value); return *this;} /** *

A location in Amazon S3.

*/ inline PackageVersionInputConfig& WithS3Location(S3Location&& value) { SetS3Location(std::move(value)); return *this;} private: S3Location m_s3Location; bool m_s3LocationHasBeenSet = false; }; } // namespace Model } // namespace Panorama } // namespace Aws