/** * 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 { /** *

Configuration information about the S3 bucket where Identity Resolution Jobs * writes result files.

You need to give Customer Profiles service * principal write permission to your S3 bucket. Otherwise, you'll get an exception * in the API response. For an example policy, see Amazon * Connect Customer Profiles cross-service confused deputy prevention.

*

See Also:

AWS * API Reference

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

The S3 location where Identity Resolution Jobs write result files.

*/ inline const S3ExportingConfig& GetS3Exporting() const{ return m_s3Exporting; } /** *

The S3 location where Identity Resolution Jobs write result files.

*/ inline bool S3ExportingHasBeenSet() const { return m_s3ExportingHasBeenSet; } /** *

The S3 location where Identity Resolution Jobs write result files.

*/ inline void SetS3Exporting(const S3ExportingConfig& value) { m_s3ExportingHasBeenSet = true; m_s3Exporting = value; } /** *

The S3 location where Identity Resolution Jobs write result files.

*/ inline void SetS3Exporting(S3ExportingConfig&& value) { m_s3ExportingHasBeenSet = true; m_s3Exporting = std::move(value); } /** *

The S3 location where Identity Resolution Jobs write result files.

*/ inline ExportingConfig& WithS3Exporting(const S3ExportingConfig& value) { SetS3Exporting(value); return *this;} /** *

The S3 location where Identity Resolution Jobs write result files.

*/ inline ExportingConfig& WithS3Exporting(S3ExportingConfig&& value) { SetS3Exporting(std::move(value)); return *this;} private: S3ExportingConfig m_s3Exporting; bool m_s3ExportingHasBeenSet = false; }; } // namespace Model } // namespace CustomerProfiles } // namespace Aws