/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Summary of model on edge device.See Also:
AWS
* API Reference
The name of the model.
*/ inline const Aws::String& GetModelName() const{ return m_modelName; } /** *The name of the model.
*/ inline bool ModelNameHasBeenSet() const { return m_modelNameHasBeenSet; } /** *The name of the model.
*/ inline void SetModelName(const Aws::String& value) { m_modelNameHasBeenSet = true; m_modelName = value; } /** *The name of the model.
*/ inline void SetModelName(Aws::String&& value) { m_modelNameHasBeenSet = true; m_modelName = std::move(value); } /** *The name of the model.
*/ inline void SetModelName(const char* value) { m_modelNameHasBeenSet = true; m_modelName.assign(value); } /** *The name of the model.
*/ inline EdgeModelSummary& WithModelName(const Aws::String& value) { SetModelName(value); return *this;} /** *The name of the model.
*/ inline EdgeModelSummary& WithModelName(Aws::String&& value) { SetModelName(std::move(value)); return *this;} /** *The name of the model.
*/ inline EdgeModelSummary& WithModelName(const char* value) { SetModelName(value); return *this;} /** *The version model.
*/ inline const Aws::String& GetModelVersion() const{ return m_modelVersion; } /** *The version model.
*/ inline bool ModelVersionHasBeenSet() const { return m_modelVersionHasBeenSet; } /** *The version model.
*/ inline void SetModelVersion(const Aws::String& value) { m_modelVersionHasBeenSet = true; m_modelVersion = value; } /** *The version model.
*/ inline void SetModelVersion(Aws::String&& value) { m_modelVersionHasBeenSet = true; m_modelVersion = std::move(value); } /** *The version model.
*/ inline void SetModelVersion(const char* value) { m_modelVersionHasBeenSet = true; m_modelVersion.assign(value); } /** *The version model.
*/ inline EdgeModelSummary& WithModelVersion(const Aws::String& value) { SetModelVersion(value); return *this;} /** *The version model.
*/ inline EdgeModelSummary& WithModelVersion(Aws::String&& value) { SetModelVersion(std::move(value)); return *this;} /** *The version model.
*/ inline EdgeModelSummary& WithModelVersion(const char* value) { SetModelVersion(value); return *this;} private: Aws::String m_modelName; bool m_modelNameHasBeenSet = false; Aws::String m_modelVersion; bool m_modelVersionHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws