/** * 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 ExportingLocation { public: AWS_CUSTOMERPROFILES_API ExportingLocation(); AWS_CUSTOMERPROFILES_API ExportingLocation(Aws::Utils::Json::JsonView jsonValue); AWS_CUSTOMERPROFILES_API ExportingLocation& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_CUSTOMERPROFILES_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Information about the S3 location where Identity Resolution Jobs write result * files.

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

Information about the S3 location where Identity Resolution Jobs write result * files.

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

Information about the S3 location where Identity Resolution Jobs write result * files.

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

Information about the S3 location where Identity Resolution Jobs write result * files.

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

Information about the S3 location where Identity Resolution Jobs write result * files.

*/ inline ExportingLocation& WithS3Exporting(const S3ExportingLocation& value) { SetS3Exporting(value); return *this;} /** *

Information about the S3 location where Identity Resolution Jobs write result * files.

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