/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The TensorBoard app settings.See Also:
AWS
* API Reference
The default instance type and the Amazon Resource Name (ARN) of the SageMaker * image created on the instance.
*/ inline const ResourceSpec& GetDefaultResourceSpec() const{ return m_defaultResourceSpec; } /** *The default instance type and the Amazon Resource Name (ARN) of the SageMaker * image created on the instance.
*/ inline bool DefaultResourceSpecHasBeenSet() const { return m_defaultResourceSpecHasBeenSet; } /** *The default instance type and the Amazon Resource Name (ARN) of the SageMaker * image created on the instance.
*/ inline void SetDefaultResourceSpec(const ResourceSpec& value) { m_defaultResourceSpecHasBeenSet = true; m_defaultResourceSpec = value; } /** *The default instance type and the Amazon Resource Name (ARN) of the SageMaker * image created on the instance.
*/ inline void SetDefaultResourceSpec(ResourceSpec&& value) { m_defaultResourceSpecHasBeenSet = true; m_defaultResourceSpec = std::move(value); } /** *The default instance type and the Amazon Resource Name (ARN) of the SageMaker * image created on the instance.
*/ inline TensorBoardAppSettings& WithDefaultResourceSpec(const ResourceSpec& value) { SetDefaultResourceSpec(value); return *this;} /** *The default instance type and the Amazon Resource Name (ARN) of the SageMaker * image created on the instance.
*/ inline TensorBoardAppSettings& WithDefaultResourceSpec(ResourceSpec&& value) { SetDefaultResourceSpec(std::move(value)); return *this;} private: ResourceSpec m_defaultResourceSpec; bool m_defaultResourceSpecHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws