/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A source for an annotation import job.See Also:
AWS
* API Reference
The source file's location in Amazon S3.
*/ inline const Aws::String& GetSource() const{ return m_source; } /** *The source file's location in Amazon S3.
*/ inline bool SourceHasBeenSet() const { return m_sourceHasBeenSet; } /** *The source file's location in Amazon S3.
*/ inline void SetSource(const Aws::String& value) { m_sourceHasBeenSet = true; m_source = value; } /** *The source file's location in Amazon S3.
*/ inline void SetSource(Aws::String&& value) { m_sourceHasBeenSet = true; m_source = std::move(value); } /** *The source file's location in Amazon S3.
*/ inline void SetSource(const char* value) { m_sourceHasBeenSet = true; m_source.assign(value); } /** *The source file's location in Amazon S3.
*/ inline AnnotationImportItemSource& WithSource(const Aws::String& value) { SetSource(value); return *this;} /** *The source file's location in Amazon S3.
*/ inline AnnotationImportItemSource& WithSource(Aws::String&& value) { SetSource(std::move(value)); return *this;} /** *The source file's location in Amazon S3.
*/ inline AnnotationImportItemSource& WithSource(const char* value) { SetSource(value); return *this;} private: Aws::String m_source; bool m_sourceHasBeenSet = false; }; } // namespace Model } // namespace Omics } // namespace Aws