/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Configuration information for the debug hook parameters, collection
* configuration, and storage paths.See Also:
AWS
* API Reference
Path to local storage location for tensors. Defaults to
* /opt/ml/output/tensors/.
Path to local storage location for tensors. Defaults to
* /opt/ml/output/tensors/.
Path to local storage location for tensors. Defaults to
* /opt/ml/output/tensors/.
Path to local storage location for tensors. Defaults to
* /opt/ml/output/tensors/.
Path to local storage location for tensors. Defaults to
* /opt/ml/output/tensors/.
Path to local storage location for tensors. Defaults to
* /opt/ml/output/tensors/.
Path to local storage location for tensors. Defaults to
* /opt/ml/output/tensors/.
Path to local storage location for tensors. Defaults to
* /opt/ml/output/tensors/.
Path to Amazon S3 storage location for tensors.
*/ inline const Aws::String& GetS3OutputPath() const{ return m_s3OutputPath; } /** *Path to Amazon S3 storage location for tensors.
*/ inline bool S3OutputPathHasBeenSet() const { return m_s3OutputPathHasBeenSet; } /** *Path to Amazon S3 storage location for tensors.
*/ inline void SetS3OutputPath(const Aws::String& value) { m_s3OutputPathHasBeenSet = true; m_s3OutputPath = value; } /** *Path to Amazon S3 storage location for tensors.
*/ inline void SetS3OutputPath(Aws::String&& value) { m_s3OutputPathHasBeenSet = true; m_s3OutputPath = std::move(value); } /** *Path to Amazon S3 storage location for tensors.
*/ inline void SetS3OutputPath(const char* value) { m_s3OutputPathHasBeenSet = true; m_s3OutputPath.assign(value); } /** *Path to Amazon S3 storage location for tensors.
*/ inline DebugHookConfig& WithS3OutputPath(const Aws::String& value) { SetS3OutputPath(value); return *this;} /** *Path to Amazon S3 storage location for tensors.
*/ inline DebugHookConfig& WithS3OutputPath(Aws::String&& value) { SetS3OutputPath(std::move(value)); return *this;} /** *Path to Amazon S3 storage location for tensors.
*/ inline DebugHookConfig& WithS3OutputPath(const char* value) { SetS3OutputPath(value); return *this;} /** *Configuration information for the debug hook parameters.
*/ inline const Aws::MapConfiguration information for the debug hook parameters.
*/ inline bool HookParametersHasBeenSet() const { return m_hookParametersHasBeenSet; } /** *Configuration information for the debug hook parameters.
*/ inline void SetHookParameters(const Aws::MapConfiguration information for the debug hook parameters.
*/ inline void SetHookParameters(Aws::MapConfiguration information for the debug hook parameters.
*/ inline DebugHookConfig& WithHookParameters(const Aws::MapConfiguration information for the debug hook parameters.
*/ inline DebugHookConfig& WithHookParameters(Aws::MapConfiguration information for the debug hook parameters.
*/ inline DebugHookConfig& AddHookParameters(const Aws::String& key, const Aws::String& value) { m_hookParametersHasBeenSet = true; m_hookParameters.emplace(key, value); return *this; } /** *Configuration information for the debug hook parameters.
*/ inline DebugHookConfig& AddHookParameters(Aws::String&& key, const Aws::String& value) { m_hookParametersHasBeenSet = true; m_hookParameters.emplace(std::move(key), value); return *this; } /** *Configuration information for the debug hook parameters.
*/ inline DebugHookConfig& AddHookParameters(const Aws::String& key, Aws::String&& value) { m_hookParametersHasBeenSet = true; m_hookParameters.emplace(key, std::move(value)); return *this; } /** *Configuration information for the debug hook parameters.
*/ inline DebugHookConfig& AddHookParameters(Aws::String&& key, Aws::String&& value) { m_hookParametersHasBeenSet = true; m_hookParameters.emplace(std::move(key), std::move(value)); return *this; } /** *Configuration information for the debug hook parameters.
*/ inline DebugHookConfig& AddHookParameters(const char* key, Aws::String&& value) { m_hookParametersHasBeenSet = true; m_hookParameters.emplace(key, std::move(value)); return *this; } /** *Configuration information for the debug hook parameters.
*/ inline DebugHookConfig& AddHookParameters(Aws::String&& key, const char* value) { m_hookParametersHasBeenSet = true; m_hookParameters.emplace(std::move(key), value); return *this; } /** *Configuration information for the debug hook parameters.
*/ inline DebugHookConfig& AddHookParameters(const char* key, const char* value) { m_hookParametersHasBeenSet = true; m_hookParameters.emplace(key, value); return *this; } /** *Configuration information for tensor collections.
*/ inline const Aws::VectorConfiguration information for tensor collections.
*/ inline bool CollectionConfigurationsHasBeenSet() const { return m_collectionConfigurationsHasBeenSet; } /** *Configuration information for tensor collections.
*/ inline void SetCollectionConfigurations(const Aws::VectorConfiguration information for tensor collections.
*/ inline void SetCollectionConfigurations(Aws::VectorConfiguration information for tensor collections.
*/ inline DebugHookConfig& WithCollectionConfigurations(const Aws::VectorConfiguration information for tensor collections.
*/ inline DebugHookConfig& WithCollectionConfigurations(Aws::VectorConfiguration information for tensor collections.
*/ inline DebugHookConfig& AddCollectionConfigurations(const CollectionConfiguration& value) { m_collectionConfigurationsHasBeenSet = true; m_collectionConfigurations.push_back(value); return *this; } /** *Configuration information for tensor collections.
*/ inline DebugHookConfig& AddCollectionConfigurations(CollectionConfiguration&& value) { m_collectionConfigurationsHasBeenSet = true; m_collectionConfigurations.push_back(std::move(value)); return *this; } private: Aws::String m_localPath; bool m_localPathHasBeenSet; Aws::String m_s3OutputPath; bool m_s3OutputPathHasBeenSet; Aws::Map