/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The input properties for an entities detection job. This includes the name of
* the S3 bucket and the path to the files to be analyzed. See
* Also:
AWS
* API Reference
The URI of the S3 bucket that contains the input data. The bucket must be in * the same region as the API endpoint that you are calling.
*/ inline const Aws::String& GetS3Bucket() const{ return m_s3Bucket; } /** *The URI of the S3 bucket that contains the input data. The bucket must be in * the same region as the API endpoint that you are calling.
*/ inline bool S3BucketHasBeenSet() const { return m_s3BucketHasBeenSet; } /** *The URI of the S3 bucket that contains the input data. The bucket must be in * the same region as the API endpoint that you are calling.
*/ inline void SetS3Bucket(const Aws::String& value) { m_s3BucketHasBeenSet = true; m_s3Bucket = value; } /** *The URI of the S3 bucket that contains the input data. The bucket must be in * the same region as the API endpoint that you are calling.
*/ inline void SetS3Bucket(Aws::String&& value) { m_s3BucketHasBeenSet = true; m_s3Bucket = std::move(value); } /** *The URI of the S3 bucket that contains the input data. The bucket must be in * the same region as the API endpoint that you are calling.
*/ inline void SetS3Bucket(const char* value) { m_s3BucketHasBeenSet = true; m_s3Bucket.assign(value); } /** *The URI of the S3 bucket that contains the input data. The bucket must be in * the same region as the API endpoint that you are calling.
*/ inline InputDataConfig& WithS3Bucket(const Aws::String& value) { SetS3Bucket(value); return *this;} /** *The URI of the S3 bucket that contains the input data. The bucket must be in * the same region as the API endpoint that you are calling.
*/ inline InputDataConfig& WithS3Bucket(Aws::String&& value) { SetS3Bucket(std::move(value)); return *this;} /** *The URI of the S3 bucket that contains the input data. The bucket must be in * the same region as the API endpoint that you are calling.
*/ inline InputDataConfig& WithS3Bucket(const char* value) { SetS3Bucket(value); return *this;} /** *The path to the input data files in the S3 bucket.
*/ inline const Aws::String& GetS3Key() const{ return m_s3Key; } /** *The path to the input data files in the S3 bucket.
*/ inline bool S3KeyHasBeenSet() const { return m_s3KeyHasBeenSet; } /** *The path to the input data files in the S3 bucket.
*/ inline void SetS3Key(const Aws::String& value) { m_s3KeyHasBeenSet = true; m_s3Key = value; } /** *The path to the input data files in the S3 bucket.
*/ inline void SetS3Key(Aws::String&& value) { m_s3KeyHasBeenSet = true; m_s3Key = std::move(value); } /** *The path to the input data files in the S3 bucket.
*/ inline void SetS3Key(const char* value) { m_s3KeyHasBeenSet = true; m_s3Key.assign(value); } /** *The path to the input data files in the S3 bucket.
*/ inline InputDataConfig& WithS3Key(const Aws::String& value) { SetS3Key(value); return *this;} /** *The path to the input data files in the S3 bucket.
*/ inline InputDataConfig& WithS3Key(Aws::String&& value) { SetS3Key(std::move(value)); return *this;} /** *The path to the input data files in the S3 bucket.
*/ inline InputDataConfig& WithS3Key(const char* value) { SetS3Key(value); return *this;} private: Aws::String m_s3Bucket; bool m_s3BucketHasBeenSet = false; Aws::String m_s3Key; bool m_s3KeyHasBeenSet = false; }; } // namespace Model } // namespace ComprehendMedical } // namespace Aws