/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Identifies the resources to deploy for a monitoring job.See
* Also:
AWS
* API Reference
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