/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information about the location in which the test set is
* stored.See Also:
AWS
* API Reference
The name of the Amazon S3 bucket in which the test set is stored.
*/ inline const Aws::String& GetS3BucketName() const{ return m_s3BucketName; } /** *The name of the Amazon S3 bucket in which the test set is stored.
*/ inline bool S3BucketNameHasBeenSet() const { return m_s3BucketNameHasBeenSet; } /** *The name of the Amazon S3 bucket in which the test set is stored.
*/ inline void SetS3BucketName(const Aws::String& value) { m_s3BucketNameHasBeenSet = true; m_s3BucketName = value; } /** *The name of the Amazon S3 bucket in which the test set is stored.
*/ inline void SetS3BucketName(Aws::String&& value) { m_s3BucketNameHasBeenSet = true; m_s3BucketName = std::move(value); } /** *The name of the Amazon S3 bucket in which the test set is stored.
*/ inline void SetS3BucketName(const char* value) { m_s3BucketNameHasBeenSet = true; m_s3BucketName.assign(value); } /** *The name of the Amazon S3 bucket in which the test set is stored.
*/ inline TestSetStorageLocation& WithS3BucketName(const Aws::String& value) { SetS3BucketName(value); return *this;} /** *The name of the Amazon S3 bucket in which the test set is stored.
*/ inline TestSetStorageLocation& WithS3BucketName(Aws::String&& value) { SetS3BucketName(std::move(value)); return *this;} /** *The name of the Amazon S3 bucket in which the test set is stored.
*/ inline TestSetStorageLocation& WithS3BucketName(const char* value) { SetS3BucketName(value); return *this;} /** *The path inside the Amazon S3 bucket where the test set is stored.
*/ inline const Aws::String& GetS3Path() const{ return m_s3Path; } /** *The path inside the Amazon S3 bucket where the test set is stored.
*/ inline bool S3PathHasBeenSet() const { return m_s3PathHasBeenSet; } /** *The path inside the Amazon S3 bucket where the test set is stored.
*/ inline void SetS3Path(const Aws::String& value) { m_s3PathHasBeenSet = true; m_s3Path = value; } /** *The path inside the Amazon S3 bucket where the test set is stored.
*/ inline void SetS3Path(Aws::String&& value) { m_s3PathHasBeenSet = true; m_s3Path = std::move(value); } /** *The path inside the Amazon S3 bucket where the test set is stored.
*/ inline void SetS3Path(const char* value) { m_s3PathHasBeenSet = true; m_s3Path.assign(value); } /** *The path inside the Amazon S3 bucket where the test set is stored.
*/ inline TestSetStorageLocation& WithS3Path(const Aws::String& value) { SetS3Path(value); return *this;} /** *The path inside the Amazon S3 bucket where the test set is stored.
*/ inline TestSetStorageLocation& WithS3Path(Aws::String&& value) { SetS3Path(std::move(value)); return *this;} /** *The path inside the Amazon S3 bucket where the test set is stored.
*/ inline TestSetStorageLocation& WithS3Path(const char* value) { SetS3Path(value); return *this;} /** *The Amazon Resource Name (ARN) of an Amazon Web Services Key Management * Service (KMS) key for encrypting the test set.
*/ inline const Aws::String& GetKmsKeyArn() const{ return m_kmsKeyArn; } /** *The Amazon Resource Name (ARN) of an Amazon Web Services Key Management * Service (KMS) key for encrypting the test set.
*/ inline bool KmsKeyArnHasBeenSet() const { return m_kmsKeyArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of an Amazon Web Services Key Management * Service (KMS) key for encrypting the test set.
*/ inline void SetKmsKeyArn(const Aws::String& value) { m_kmsKeyArnHasBeenSet = true; m_kmsKeyArn = value; } /** *The Amazon Resource Name (ARN) of an Amazon Web Services Key Management * Service (KMS) key for encrypting the test set.
*/ inline void SetKmsKeyArn(Aws::String&& value) { m_kmsKeyArnHasBeenSet = true; m_kmsKeyArn = std::move(value); } /** *The Amazon Resource Name (ARN) of an Amazon Web Services Key Management * Service (KMS) key for encrypting the test set.
*/ inline void SetKmsKeyArn(const char* value) { m_kmsKeyArnHasBeenSet = true; m_kmsKeyArn.assign(value); } /** *The Amazon Resource Name (ARN) of an Amazon Web Services Key Management * Service (KMS) key for encrypting the test set.
*/ inline TestSetStorageLocation& WithKmsKeyArn(const Aws::String& value) { SetKmsKeyArn(value); return *this;} /** *The Amazon Resource Name (ARN) of an Amazon Web Services Key Management * Service (KMS) key for encrypting the test set.
*/ inline TestSetStorageLocation& WithKmsKeyArn(Aws::String&& value) { SetKmsKeyArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of an Amazon Web Services Key Management * Service (KMS) key for encrypting the test set.
*/ inline TestSetStorageLocation& WithKmsKeyArn(const char* value) { SetKmsKeyArn(value); return *this;} private: Aws::String m_s3BucketName; bool m_s3BucketNameHasBeenSet = false; Aws::String m_s3Path; bool m_s3PathHasBeenSet = false; Aws::String m_kmsKeyArn; bool m_kmsKeyArnHasBeenSet = false; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws