/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides summary information about a model.See Also:
AWS
* API Reference
The name of the model that you want a summary for.
*/ inline const Aws::String& GetModelName() const{ return m_modelName; } /** *The name of the model that you want a summary for.
*/ inline bool ModelNameHasBeenSet() const { return m_modelNameHasBeenSet; } /** *The name of the model that you want a summary for.
*/ inline void SetModelName(const Aws::String& value) { m_modelNameHasBeenSet = true; m_modelName = value; } /** *The name of the model that you want a summary for.
*/ inline void SetModelName(Aws::String&& value) { m_modelNameHasBeenSet = true; m_modelName = std::move(value); } /** *The name of the model that you want a summary for.
*/ inline void SetModelName(const char* value) { m_modelNameHasBeenSet = true; m_modelName.assign(value); } /** *The name of the model that you want a summary for.
*/ inline ModelSummary& WithModelName(const Aws::String& value) { SetModelName(value); return *this;} /** *The name of the model that you want a summary for.
*/ inline ModelSummary& WithModelName(Aws::String&& value) { SetModelName(std::move(value)); return *this;} /** *The name of the model that you want a summary for.
*/ inline ModelSummary& WithModelName(const char* value) { SetModelName(value); return *this;} /** *The Amazon Resource Name (ARN) of the model.
*/ inline const Aws::String& GetModelArn() const{ return m_modelArn; } /** *The Amazon Resource Name (ARN) of the model.
*/ inline bool ModelArnHasBeenSet() const { return m_modelArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the model.
*/ inline void SetModelArn(const Aws::String& value) { m_modelArnHasBeenSet = true; m_modelArn = value; } /** *The Amazon Resource Name (ARN) of the model.
*/ inline void SetModelArn(Aws::String&& value) { m_modelArnHasBeenSet = true; m_modelArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the model.
*/ inline void SetModelArn(const char* value) { m_modelArnHasBeenSet = true; m_modelArn.assign(value); } /** *The Amazon Resource Name (ARN) of the model.
*/ inline ModelSummary& WithModelArn(const Aws::String& value) { SetModelArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the model.
*/ inline ModelSummary& WithModelArn(Aws::String&& value) { SetModelArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the model.
*/ inline ModelSummary& WithModelArn(const char* value) { SetModelArn(value); return *this;} /** *A timestamp that indicates when the model was created.
*/ inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; } /** *A timestamp that indicates when the model was created.
*/ inline bool CreationTimeHasBeenSet() const { return m_creationTimeHasBeenSet; } /** *A timestamp that indicates when the model was created.
*/ inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTimeHasBeenSet = true; m_creationTime = value; } /** *A timestamp that indicates when the model was created.
*/ inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTimeHasBeenSet = true; m_creationTime = std::move(value); } /** *A timestamp that indicates when the model was created.
*/ inline ModelSummary& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;} /** *A timestamp that indicates when the model was created.
*/ inline ModelSummary& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;} private: Aws::String m_modelName; bool m_modelNameHasBeenSet = false; Aws::String m_modelArn; bool m_modelArnHasBeenSet = false; Aws::Utils::DateTime m_creationTime; bool m_creationTimeHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws