/** * 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 LookoutforVision { namespace Model { /** *

Configuration information for a Amazon Lookout for Vision model packaging * job. For more information, see StartModelPackagingJob.

See * Also:

AWS * API Reference

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

Configuration information for the AWS IoT Greengrass component in a model * packaging job.

*/ inline const GreengrassConfiguration& GetGreengrass() const{ return m_greengrass; } /** *

Configuration information for the AWS IoT Greengrass component in a model * packaging job.

*/ inline bool GreengrassHasBeenSet() const { return m_greengrassHasBeenSet; } /** *

Configuration information for the AWS IoT Greengrass component in a model * packaging job.

*/ inline void SetGreengrass(const GreengrassConfiguration& value) { m_greengrassHasBeenSet = true; m_greengrass = value; } /** *

Configuration information for the AWS IoT Greengrass component in a model * packaging job.

*/ inline void SetGreengrass(GreengrassConfiguration&& value) { m_greengrassHasBeenSet = true; m_greengrass = std::move(value); } /** *

Configuration information for the AWS IoT Greengrass component in a model * packaging job.

*/ inline ModelPackagingConfiguration& WithGreengrass(const GreengrassConfiguration& value) { SetGreengrass(value); return *this;} /** *

Configuration information for the AWS IoT Greengrass component in a model * packaging job.

*/ inline ModelPackagingConfiguration& WithGreengrass(GreengrassConfiguration&& value) { SetGreengrass(std::move(value)); return *this;} private: GreengrassConfiguration m_greengrass; bool m_greengrassHasBeenSet = false; }; } // namespace Model } // namespace LookoutforVision } // namespace Aws