/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The input properties for an import job.See Also:
AWS
* API Reference
The S3Uri is the user specified S3 location of the FHIR data to be imported * into AWS HealthLake.
*/ inline const Aws::String& GetS3Uri() const{ return m_s3Uri; } /** *The S3Uri is the user specified S3 location of the FHIR data to be imported * into AWS HealthLake.
*/ inline bool S3UriHasBeenSet() const { return m_s3UriHasBeenSet; } /** *The S3Uri is the user specified S3 location of the FHIR data to be imported * into AWS HealthLake.
*/ inline void SetS3Uri(const Aws::String& value) { m_s3UriHasBeenSet = true; m_s3Uri = value; } /** *The S3Uri is the user specified S3 location of the FHIR data to be imported * into AWS HealthLake.
*/ inline void SetS3Uri(Aws::String&& value) { m_s3UriHasBeenSet = true; m_s3Uri = std::move(value); } /** *The S3Uri is the user specified S3 location of the FHIR data to be imported * into AWS HealthLake.
*/ inline void SetS3Uri(const char* value) { m_s3UriHasBeenSet = true; m_s3Uri.assign(value); } /** *The S3Uri is the user specified S3 location of the FHIR data to be imported * into AWS HealthLake.
*/ inline InputDataConfig& WithS3Uri(const Aws::String& value) { SetS3Uri(value); return *this;} /** *The S3Uri is the user specified S3 location of the FHIR data to be imported * into AWS HealthLake.
*/ inline InputDataConfig& WithS3Uri(Aws::String&& value) { SetS3Uri(std::move(value)); return *this;} /** *The S3Uri is the user specified S3 location of the FHIR data to be imported * into AWS HealthLake.
*/ inline InputDataConfig& WithS3Uri(const char* value) { SetS3Uri(value); return *this;} private: Aws::String m_s3Uri; bool m_s3UriHasBeenSet = false; }; } // namespace Model } // namespace HealthLake } // namespace Aws