104 lines
4.1 KiB
C
104 lines
4.1 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/pinpoint/Pinpoint_EXPORTS.h>
|
|||
|
|
#include <aws/pinpoint/model/CampaignStatus.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
class JsonView;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace Pinpoint
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Provides information about the status of a campaign.</p><p><h3>See Also:</h3>
|
|||
|
|
* <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/CampaignState">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_PINPOINT_API CampaignState
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
CampaignState();
|
|||
|
|
CampaignState(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
CampaignState& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The current status of the campaign, or the current status of a treatment that
|
|||
|
|
* belongs to an A/B test campaign.</p> <p>If a campaign uses A/B testing, the
|
|||
|
|
* campaign has a status of COMPLETED only if all campaign treatments have a status
|
|||
|
|
* of COMPLETED. If you delete the segment that's associated with a campaign, the
|
|||
|
|
* campaign fails and has a status of DELETED.</p>
|
|||
|
|
*/
|
|||
|
|
inline const CampaignStatus& GetCampaignStatus() const{ return m_campaignStatus; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The current status of the campaign, or the current status of a treatment that
|
|||
|
|
* belongs to an A/B test campaign.</p> <p>If a campaign uses A/B testing, the
|
|||
|
|
* campaign has a status of COMPLETED only if all campaign treatments have a status
|
|||
|
|
* of COMPLETED. If you delete the segment that's associated with a campaign, the
|
|||
|
|
* campaign fails and has a status of DELETED.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool CampaignStatusHasBeenSet() const { return m_campaignStatusHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The current status of the campaign, or the current status of a treatment that
|
|||
|
|
* belongs to an A/B test campaign.</p> <p>If a campaign uses A/B testing, the
|
|||
|
|
* campaign has a status of COMPLETED only if all campaign treatments have a status
|
|||
|
|
* of COMPLETED. If you delete the segment that's associated with a campaign, the
|
|||
|
|
* campaign fails and has a status of DELETED.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCampaignStatus(const CampaignStatus& value) { m_campaignStatusHasBeenSet = true; m_campaignStatus = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The current status of the campaign, or the current status of a treatment that
|
|||
|
|
* belongs to an A/B test campaign.</p> <p>If a campaign uses A/B testing, the
|
|||
|
|
* campaign has a status of COMPLETED only if all campaign treatments have a status
|
|||
|
|
* of COMPLETED. If you delete the segment that's associated with a campaign, the
|
|||
|
|
* campaign fails and has a status of DELETED.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCampaignStatus(CampaignStatus&& value) { m_campaignStatusHasBeenSet = true; m_campaignStatus = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The current status of the campaign, or the current status of a treatment that
|
|||
|
|
* belongs to an A/B test campaign.</p> <p>If a campaign uses A/B testing, the
|
|||
|
|
* campaign has a status of COMPLETED only if all campaign treatments have a status
|
|||
|
|
* of COMPLETED. If you delete the segment that's associated with a campaign, the
|
|||
|
|
* campaign fails and has a status of DELETED.</p>
|
|||
|
|
*/
|
|||
|
|
inline CampaignState& WithCampaignStatus(const CampaignStatus& value) { SetCampaignStatus(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The current status of the campaign, or the current status of a treatment that
|
|||
|
|
* belongs to an A/B test campaign.</p> <p>If a campaign uses A/B testing, the
|
|||
|
|
* campaign has a status of COMPLETED only if all campaign treatments have a status
|
|||
|
|
* of COMPLETED. If you delete the segment that's associated with a campaign, the
|
|||
|
|
* campaign fails and has a status of DELETED.</p>
|
|||
|
|
*/
|
|||
|
|
inline CampaignState& WithCampaignStatus(CampaignStatus&& value) { SetCampaignStatus(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
CampaignStatus m_campaignStatus;
|
|||
|
|
bool m_campaignStatusHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Pinpoint
|
|||
|
|
} // namespace Aws
|