/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Configuration information for a Amazon Lookout for Vision model packaging
* job. For more information, see StartModelPackagingJob. See
* Also:
AWS
* API Reference
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