/** * 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 { /** *

The TensorBoard app settings.

See Also:

AWS * API Reference

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

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