/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace SESV2 { namespace Model { /** *

A request to retrieve the results of a predictive inbox placement * test.

See Also:

AWS * API Reference

*/ class GetDeliverabilityTestReportRequest : public SESV2Request { public: AWS_SESV2_API GetDeliverabilityTestReportRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "GetDeliverabilityTestReport"; } AWS_SESV2_API Aws::String SerializePayload() const override; /** *

A unique string that identifies the predictive inbox placement test.

*/ inline const Aws::String& GetReportId() const{ return m_reportId; } /** *

A unique string that identifies the predictive inbox placement test.

*/ inline bool ReportIdHasBeenSet() const { return m_reportIdHasBeenSet; } /** *

A unique string that identifies the predictive inbox placement test.

*/ inline void SetReportId(const Aws::String& value) { m_reportIdHasBeenSet = true; m_reportId = value; } /** *

A unique string that identifies the predictive inbox placement test.

*/ inline void SetReportId(Aws::String&& value) { m_reportIdHasBeenSet = true; m_reportId = std::move(value); } /** *

A unique string that identifies the predictive inbox placement test.

*/ inline void SetReportId(const char* value) { m_reportIdHasBeenSet = true; m_reportId.assign(value); } /** *

A unique string that identifies the predictive inbox placement test.

*/ inline GetDeliverabilityTestReportRequest& WithReportId(const Aws::String& value) { SetReportId(value); return *this;} /** *

A unique string that identifies the predictive inbox placement test.

*/ inline GetDeliverabilityTestReportRequest& WithReportId(Aws::String&& value) { SetReportId(std::move(value)); return *this;} /** *

A unique string that identifies the predictive inbox placement test.

*/ inline GetDeliverabilityTestReportRequest& WithReportId(const char* value) { SetReportId(value); return *this;} private: Aws::String m_reportId; bool m_reportIdHasBeenSet = false; }; } // namespace Model } // namespace SESV2 } // namespace Aws