/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace HealthLake { namespace Model { /** *

The configuration of the S3 bucket for either an import or export job. This * includes assigning permissions for access.

See Also:

AWS * API Reference

*/ class S3Configuration { public: AWS_HEALTHLAKE_API S3Configuration(); AWS_HEALTHLAKE_API S3Configuration(Aws::Utils::Json::JsonView jsonValue); AWS_HEALTHLAKE_API S3Configuration& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_HEALTHLAKE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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 S3Configuration& 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 S3Configuration& 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 S3Configuration& WithS3Uri(const char* value) { SetS3Uri(value); return *this;} /** *

The KMS key ID used to access the S3 bucket.

*/ inline const Aws::String& GetKmsKeyId() const{ return m_kmsKeyId; } /** *

The KMS key ID used to access the S3 bucket.

*/ inline bool KmsKeyIdHasBeenSet() const { return m_kmsKeyIdHasBeenSet; } /** *

The KMS key ID used to access the S3 bucket.

*/ inline void SetKmsKeyId(const Aws::String& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = value; } /** *

The KMS key ID used to access the S3 bucket.

*/ inline void SetKmsKeyId(Aws::String&& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = std::move(value); } /** *

The KMS key ID used to access the S3 bucket.

*/ inline void SetKmsKeyId(const char* value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId.assign(value); } /** *

The KMS key ID used to access the S3 bucket.

*/ inline S3Configuration& WithKmsKeyId(const Aws::String& value) { SetKmsKeyId(value); return *this;} /** *

The KMS key ID used to access the S3 bucket.

*/ inline S3Configuration& WithKmsKeyId(Aws::String&& value) { SetKmsKeyId(std::move(value)); return *this;} /** *

The KMS key ID used to access the S3 bucket.

*/ inline S3Configuration& WithKmsKeyId(const char* value) { SetKmsKeyId(value); return *this;} private: Aws::String m_s3Uri; bool m_s3UriHasBeenSet = false; Aws::String m_kmsKeyId; bool m_kmsKeyIdHasBeenSet = false; }; } // namespace Model } // namespace HealthLake } // namespace Aws