/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about the output from a model packaging job. See
* Also:
AWS
* API Reference
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