/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The Amazon S3 data for the Vector Enrichment job.See Also:
* AWS
* API Reference
The Key Management Service key ID for server-side encryption.
*/ inline const Aws::String& GetKmsKeyId() const{ return m_kmsKeyId; } /** *The Key Management Service key ID for server-side encryption.
*/ inline bool KmsKeyIdHasBeenSet() const { return m_kmsKeyIdHasBeenSet; } /** *The Key Management Service key ID for server-side encryption.
*/ inline void SetKmsKeyId(const Aws::String& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = value; } /** *The Key Management Service key ID for server-side encryption.
*/ inline void SetKmsKeyId(Aws::String&& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = std::move(value); } /** *The Key Management Service key ID for server-side encryption.
*/ inline void SetKmsKeyId(const char* value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId.assign(value); } /** *The Key Management Service key ID for server-side encryption.
*/ inline VectorEnrichmentJobS3Data& WithKmsKeyId(const Aws::String& value) { SetKmsKeyId(value); return *this;} /** *The Key Management Service key ID for server-side encryption.
*/ inline VectorEnrichmentJobS3Data& WithKmsKeyId(Aws::String&& value) { SetKmsKeyId(std::move(value)); return *this;} /** *The Key Management Service key ID for server-side encryption.
*/ inline VectorEnrichmentJobS3Data& WithKmsKeyId(const char* value) { SetKmsKeyId(value); return *this;} /** *The URL to the Amazon S3 data for the Vector Enrichment job.
*/ inline const Aws::String& GetS3Uri() const{ return m_s3Uri; } /** *The URL to the Amazon S3 data for the Vector Enrichment job.
*/ inline bool S3UriHasBeenSet() const { return m_s3UriHasBeenSet; } /** *The URL to the Amazon S3 data for the Vector Enrichment job.
*/ inline void SetS3Uri(const Aws::String& value) { m_s3UriHasBeenSet = true; m_s3Uri = value; } /** *The URL to the Amazon S3 data for the Vector Enrichment job.
*/ inline void SetS3Uri(Aws::String&& value) { m_s3UriHasBeenSet = true; m_s3Uri = std::move(value); } /** *The URL to the Amazon S3 data for the Vector Enrichment job.
*/ inline void SetS3Uri(const char* value) { m_s3UriHasBeenSet = true; m_s3Uri.assign(value); } /** *The URL to the Amazon S3 data for the Vector Enrichment job.
*/ inline VectorEnrichmentJobS3Data& WithS3Uri(const Aws::String& value) { SetS3Uri(value); return *this;} /** *The URL to the Amazon S3 data for the Vector Enrichment job.
*/ inline VectorEnrichmentJobS3Data& WithS3Uri(Aws::String&& value) { SetS3Uri(std::move(value)); return *this;} /** *The URL to the Amazon S3 data for the Vector Enrichment job.
*/ inline VectorEnrichmentJobS3Data& WithS3Uri(const char* value) { SetS3Uri(value); return *this;} private: Aws::String m_kmsKeyId; bool m_kmsKeyIdHasBeenSet = false; Aws::String m_s3Uri; bool m_s3UriHasBeenSet = false; }; } // namespace Model } // namespace SageMakerGeospatial } // namespace Aws