/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Determine whether your data volume persists on the host container instance
* and where it's stored. If this parameter is empty, then the Docker daemon
* assigns a host path for your data volume. However, the data isn't guaranteed to
* persist after the containers that are associated with it stop
* running.See Also:
AWS API
* Reference
The path on the host container instance that's presented to the container. If * this parameter is empty, then the Docker daemon has assigned a host path for * you. If this parameter contains a file location, then the data volume persists * at the specified location on the host container instance until you delete it * manually. If the source path location doesn't exist on the host container * instance, the Docker daemon creates it. If the location does exist, the contents * of the source path folder are exported.
This parameter isn't * applicable to jobs that run on Fargate resources. Don't provide this for these * jobs.
*/ inline const Aws::String& GetSourcePath() const{ return m_sourcePath; } /** *The path on the host container instance that's presented to the container. If * this parameter is empty, then the Docker daemon has assigned a host path for * you. If this parameter contains a file location, then the data volume persists * at the specified location on the host container instance until you delete it * manually. If the source path location doesn't exist on the host container * instance, the Docker daemon creates it. If the location does exist, the contents * of the source path folder are exported.
This parameter isn't * applicable to jobs that run on Fargate resources. Don't provide this for these * jobs.
*/ inline bool SourcePathHasBeenSet() const { return m_sourcePathHasBeenSet; } /** *The path on the host container instance that's presented to the container. If * this parameter is empty, then the Docker daemon has assigned a host path for * you. If this parameter contains a file location, then the data volume persists * at the specified location on the host container instance until you delete it * manually. If the source path location doesn't exist on the host container * instance, the Docker daemon creates it. If the location does exist, the contents * of the source path folder are exported.
This parameter isn't * applicable to jobs that run on Fargate resources. Don't provide this for these * jobs.
*/ inline void SetSourcePath(const Aws::String& value) { m_sourcePathHasBeenSet = true; m_sourcePath = value; } /** *The path on the host container instance that's presented to the container. If * this parameter is empty, then the Docker daemon has assigned a host path for * you. If this parameter contains a file location, then the data volume persists * at the specified location on the host container instance until you delete it * manually. If the source path location doesn't exist on the host container * instance, the Docker daemon creates it. If the location does exist, the contents * of the source path folder are exported.
This parameter isn't * applicable to jobs that run on Fargate resources. Don't provide this for these * jobs.
*/ inline void SetSourcePath(Aws::String&& value) { m_sourcePathHasBeenSet = true; m_sourcePath = std::move(value); } /** *The path on the host container instance that's presented to the container. If * this parameter is empty, then the Docker daemon has assigned a host path for * you. If this parameter contains a file location, then the data volume persists * at the specified location on the host container instance until you delete it * manually. If the source path location doesn't exist on the host container * instance, the Docker daemon creates it. If the location does exist, the contents * of the source path folder are exported.
This parameter isn't * applicable to jobs that run on Fargate resources. Don't provide this for these * jobs.
*/ inline void SetSourcePath(const char* value) { m_sourcePathHasBeenSet = true; m_sourcePath.assign(value); } /** *The path on the host container instance that's presented to the container. If * this parameter is empty, then the Docker daemon has assigned a host path for * you. If this parameter contains a file location, then the data volume persists * at the specified location on the host container instance until you delete it * manually. If the source path location doesn't exist on the host container * instance, the Docker daemon creates it. If the location does exist, the contents * of the source path folder are exported.
This parameter isn't * applicable to jobs that run on Fargate resources. Don't provide this for these * jobs.
*/ inline Host& WithSourcePath(const Aws::String& value) { SetSourcePath(value); return *this;} /** *The path on the host container instance that's presented to the container. If * this parameter is empty, then the Docker daemon has assigned a host path for * you. If this parameter contains a file location, then the data volume persists * at the specified location on the host container instance until you delete it * manually. If the source path location doesn't exist on the host container * instance, the Docker daemon creates it. If the location does exist, the contents * of the source path folder are exported.
This parameter isn't * applicable to jobs that run on Fargate resources. Don't provide this for these * jobs.
*/ inline Host& WithSourcePath(Aws::String&& value) { SetSourcePath(std::move(value)); return *this;} /** *The path on the host container instance that's presented to the container. If * this parameter is empty, then the Docker daemon has assigned a host path for * you. If this parameter contains a file location, then the data volume persists * at the specified location on the host container instance until you delete it * manually. If the source path location doesn't exist on the host container * instance, the Docker daemon creates it. If the location does exist, the contents * of the source path folder are exported.
This parameter isn't * applicable to jobs that run on Fargate resources. Don't provide this for these * jobs.
*/ inline Host& WithSourcePath(const char* value) { SetSourcePath(value); return *this;} private: Aws::String m_sourcePath; bool m_sourcePathHasBeenSet = false; }; } // namespace Model } // namespace Batch } // namespace Aws