/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The source for an image.See Also:
AWS
* API Reference
The type of the image.
*/ inline const Aws::String& GetType() const{ return m_type; } /** *The type of the image.
*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *The type of the image.
*/ inline void SetType(const Aws::String& value) { m_typeHasBeenSet = true; m_type = value; } /** *The type of the image.
*/ inline void SetType(Aws::String&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *The type of the image.
*/ inline void SetType(const char* value) { m_typeHasBeenSet = true; m_type.assign(value); } /** *The type of the image.
*/ inline ImageSource& WithType(const Aws::String& value) { SetType(value); return *this;} /** *The type of the image.
*/ inline ImageSource& WithType(Aws::String&& value) { SetType(std::move(value)); return *this;} /** *The type of the image.
*/ inline ImageSource& WithType(const char* value) { SetType(value); return *this;} private: Aws::String m_type; bool m_typeHasBeenSet = false; }; } // namespace Model } // namespace LookoutforVision } // namespace Aws