/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A model displayed in the Amazon SageMaker Model Dashboard.See
* Also:
AWS
* API Reference
A model displayed in the Model Dashboard.
*/ inline const Model& GetModel() const{ return m_model; } /** *A model displayed in the Model Dashboard.
*/ inline bool ModelHasBeenSet() const { return m_modelHasBeenSet; } /** *A model displayed in the Model Dashboard.
*/ inline void SetModel(const Model& value) { m_modelHasBeenSet = true; m_model = value; } /** *A model displayed in the Model Dashboard.
*/ inline void SetModel(Model&& value) { m_modelHasBeenSet = true; m_model = std::move(value); } /** *A model displayed in the Model Dashboard.
*/ inline ModelDashboardModel& WithModel(const Model& value) { SetModel(value); return *this;} /** *A model displayed in the Model Dashboard.
*/ inline ModelDashboardModel& WithModel(Model&& value) { SetModel(std::move(value)); return *this;} /** *The endpoints that host a model.
*/ inline const Aws::VectorThe endpoints that host a model.
*/ inline bool EndpointsHasBeenSet() const { return m_endpointsHasBeenSet; } /** *The endpoints that host a model.
*/ inline void SetEndpoints(const Aws::VectorThe endpoints that host a model.
*/ inline void SetEndpoints(Aws::VectorThe endpoints that host a model.
*/ inline ModelDashboardModel& WithEndpoints(const Aws::VectorThe endpoints that host a model.
*/ inline ModelDashboardModel& WithEndpoints(Aws::VectorThe endpoints that host a model.
*/ inline ModelDashboardModel& AddEndpoints(const ModelDashboardEndpoint& value) { m_endpointsHasBeenSet = true; m_endpoints.push_back(value); return *this; } /** *The endpoints that host a model.
*/ inline ModelDashboardModel& AddEndpoints(ModelDashboardEndpoint&& value) { m_endpointsHasBeenSet = true; m_endpoints.push_back(std::move(value)); return *this; } inline const TransformJob& GetLastBatchTransformJob() const{ return m_lastBatchTransformJob; } inline bool LastBatchTransformJobHasBeenSet() const { return m_lastBatchTransformJobHasBeenSet; } inline void SetLastBatchTransformJob(const TransformJob& value) { m_lastBatchTransformJobHasBeenSet = true; m_lastBatchTransformJob = value; } inline void SetLastBatchTransformJob(TransformJob&& value) { m_lastBatchTransformJobHasBeenSet = true; m_lastBatchTransformJob = std::move(value); } inline ModelDashboardModel& WithLastBatchTransformJob(const TransformJob& value) { SetLastBatchTransformJob(value); return *this;} inline ModelDashboardModel& WithLastBatchTransformJob(TransformJob&& value) { SetLastBatchTransformJob(std::move(value)); return *this;} /** *The monitoring schedules for a model.
*/ inline const Aws::VectorThe monitoring schedules for a model.
*/ inline bool MonitoringSchedulesHasBeenSet() const { return m_monitoringSchedulesHasBeenSet; } /** *The monitoring schedules for a model.
*/ inline void SetMonitoringSchedules(const Aws::VectorThe monitoring schedules for a model.
*/ inline void SetMonitoringSchedules(Aws::VectorThe monitoring schedules for a model.
*/ inline ModelDashboardModel& WithMonitoringSchedules(const Aws::VectorThe monitoring schedules for a model.
*/ inline ModelDashboardModel& WithMonitoringSchedules(Aws::VectorThe monitoring schedules for a model.
*/ inline ModelDashboardModel& AddMonitoringSchedules(const ModelDashboardMonitoringSchedule& value) { m_monitoringSchedulesHasBeenSet = true; m_monitoringSchedules.push_back(value); return *this; } /** *The monitoring schedules for a model.
*/ inline ModelDashboardModel& AddMonitoringSchedules(ModelDashboardMonitoringSchedule&& value) { m_monitoringSchedulesHasBeenSet = true; m_monitoringSchedules.push_back(std::move(value)); return *this; } /** *The model card for a model.
*/ inline const ModelDashboardModelCard& GetModelCard() const{ return m_modelCard; } /** *The model card for a model.
*/ inline bool ModelCardHasBeenSet() const { return m_modelCardHasBeenSet; } /** *The model card for a model.
*/ inline void SetModelCard(const ModelDashboardModelCard& value) { m_modelCardHasBeenSet = true; m_modelCard = value; } /** *The model card for a model.
*/ inline void SetModelCard(ModelDashboardModelCard&& value) { m_modelCardHasBeenSet = true; m_modelCard = std::move(value); } /** *The model card for a model.
*/ inline ModelDashboardModel& WithModelCard(const ModelDashboardModelCard& value) { SetModelCard(value); return *this;} /** *The model card for a model.
*/ inline ModelDashboardModel& WithModelCard(ModelDashboardModelCard&& value) { SetModelCard(std::move(value)); return *this;} private: Model m_model; bool m_modelHasBeenSet = false; Aws::Vector