/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { /** *

Identifies the resources to deploy for a monitoring job.

See * Also:

AWS * API Reference

*/ class MonitoringResources { public: AWS_SAGEMAKER_API MonitoringResources(); AWS_SAGEMAKER_API MonitoringResources(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API MonitoringResources& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The configuration for the cluster resources used to run the processing * job.

*/ inline const MonitoringClusterConfig& GetClusterConfig() const{ return m_clusterConfig; } /** *

The configuration for the cluster resources used to run the processing * job.

*/ inline bool ClusterConfigHasBeenSet() const { return m_clusterConfigHasBeenSet; } /** *

The configuration for the cluster resources used to run the processing * job.

*/ inline void SetClusterConfig(const MonitoringClusterConfig& value) { m_clusterConfigHasBeenSet = true; m_clusterConfig = value; } /** *

The configuration for the cluster resources used to run the processing * job.

*/ inline void SetClusterConfig(MonitoringClusterConfig&& value) { m_clusterConfigHasBeenSet = true; m_clusterConfig = std::move(value); } /** *

The configuration for the cluster resources used to run the processing * job.

*/ inline MonitoringResources& WithClusterConfig(const MonitoringClusterConfig& value) { SetClusterConfig(value); return *this;} /** *

The configuration for the cluster resources used to run the processing * job.

*/ inline MonitoringResources& WithClusterConfig(MonitoringClusterConfig&& value) { SetClusterConfig(std::move(value)); return *this;} private: MonitoringClusterConfig m_clusterConfig; bool m_clusterConfigHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws