/** * 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 { /** *

Information about the output from a model packaging job.

See * Also:

AWS * API Reference

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

Information about the AWS IoT Greengrass component in a model packaging job. *

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

Information about the AWS IoT Greengrass component in a model packaging job. *

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

Information about the AWS IoT Greengrass component in a model packaging job. *

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

Information about the AWS IoT Greengrass component in a model packaging job. *

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

Information about the AWS IoT Greengrass component in a model packaging job. *

*/ inline ModelPackagingOutputDetails& WithGreengrass(const GreengrassOutputDetails& value) { SetGreengrass(value); return *this;} /** *

Information about the AWS IoT Greengrass component in a model packaging job. *

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