/** * 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 CustomerProfiles { namespace Model { /** *

The S3 location where Identity Resolution Jobs write result * files.

See Also:

AWS * API Reference

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

The name of the S3 bucket name where Identity Resolution Jobs write result * files.

*/ inline const Aws::String& GetS3BucketName() const{ return m_s3BucketName; } /** *

The name of the S3 bucket name where Identity Resolution Jobs write result * files.

*/ inline bool S3BucketNameHasBeenSet() const { return m_s3BucketNameHasBeenSet; } /** *

The name of the S3 bucket name where Identity Resolution Jobs write result * files.

*/ inline void SetS3BucketName(const Aws::String& value) { m_s3BucketNameHasBeenSet = true; m_s3BucketName = value; } /** *

The name of the S3 bucket name where Identity Resolution Jobs write result * files.

*/ inline void SetS3BucketName(Aws::String&& value) { m_s3BucketNameHasBeenSet = true; m_s3BucketName = std::move(value); } /** *

The name of the S3 bucket name where Identity Resolution Jobs write result * files.

*/ inline void SetS3BucketName(const char* value) { m_s3BucketNameHasBeenSet = true; m_s3BucketName.assign(value); } /** *

The name of the S3 bucket name where Identity Resolution Jobs write result * files.

*/ inline S3ExportingLocation& WithS3BucketName(const Aws::String& value) { SetS3BucketName(value); return *this;} /** *

The name of the S3 bucket name where Identity Resolution Jobs write result * files.

*/ inline S3ExportingLocation& WithS3BucketName(Aws::String&& value) { SetS3BucketName(std::move(value)); return *this;} /** *

The name of the S3 bucket name where Identity Resolution Jobs write result * files.

*/ inline S3ExportingLocation& WithS3BucketName(const char* value) { SetS3BucketName(value); return *this;} /** *

The S3 key name of the location where Identity Resolution Jobs write result * files.

*/ inline const Aws::String& GetS3KeyName() const{ return m_s3KeyName; } /** *

The S3 key name of the location where Identity Resolution Jobs write result * files.

*/ inline bool S3KeyNameHasBeenSet() const { return m_s3KeyNameHasBeenSet; } /** *

The S3 key name of the location where Identity Resolution Jobs write result * files.

*/ inline void SetS3KeyName(const Aws::String& value) { m_s3KeyNameHasBeenSet = true; m_s3KeyName = value; } /** *

The S3 key name of the location where Identity Resolution Jobs write result * files.

*/ inline void SetS3KeyName(Aws::String&& value) { m_s3KeyNameHasBeenSet = true; m_s3KeyName = std::move(value); } /** *

The S3 key name of the location where Identity Resolution Jobs write result * files.

*/ inline void SetS3KeyName(const char* value) { m_s3KeyNameHasBeenSet = true; m_s3KeyName.assign(value); } /** *

The S3 key name of the location where Identity Resolution Jobs write result * files.

*/ inline S3ExportingLocation& WithS3KeyName(const Aws::String& value) { SetS3KeyName(value); return *this;} /** *

The S3 key name of the location where Identity Resolution Jobs write result * files.

*/ inline S3ExportingLocation& WithS3KeyName(Aws::String&& value) { SetS3KeyName(std::move(value)); return *this;} /** *

The S3 key name of the location where Identity Resolution Jobs write result * files.

*/ inline S3ExportingLocation& WithS3KeyName(const char* value) { SetS3KeyName(value); return *this;} private: Aws::String m_s3BucketName; bool m_s3BucketNameHasBeenSet = false; Aws::String m_s3KeyName; bool m_s3KeyNameHasBeenSet = false; }; } // namespace Model } // namespace CustomerProfiles } // namespace Aws