/** * 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 VoiceID { namespace Model { /** */ class DisassociateFraudsterRequest : public VoiceIDRequest { public: AWS_VOICEID_API DisassociateFraudsterRequest(); // 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 "DisassociateFraudster"; } AWS_VOICEID_API Aws::String SerializePayload() const override; AWS_VOICEID_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The identifier of the domain that contains the fraudster.

*/ inline const Aws::String& GetDomainId() const{ return m_domainId; } /** *

The identifier of the domain that contains the fraudster.

*/ inline bool DomainIdHasBeenSet() const { return m_domainIdHasBeenSet; } /** *

The identifier of the domain that contains the fraudster.

*/ inline void SetDomainId(const Aws::String& value) { m_domainIdHasBeenSet = true; m_domainId = value; } /** *

The identifier of the domain that contains the fraudster.

*/ inline void SetDomainId(Aws::String&& value) { m_domainIdHasBeenSet = true; m_domainId = std::move(value); } /** *

The identifier of the domain that contains the fraudster.

*/ inline void SetDomainId(const char* value) { m_domainIdHasBeenSet = true; m_domainId.assign(value); } /** *

The identifier of the domain that contains the fraudster.

*/ inline DisassociateFraudsterRequest& WithDomainId(const Aws::String& value) { SetDomainId(value); return *this;} /** *

The identifier of the domain that contains the fraudster.

*/ inline DisassociateFraudsterRequest& WithDomainId(Aws::String&& value) { SetDomainId(std::move(value)); return *this;} /** *

The identifier of the domain that contains the fraudster.

*/ inline DisassociateFraudsterRequest& WithDomainId(const char* value) { SetDomainId(value); return *this;} /** *

The identifier of the fraudster to be disassociated from the watchlist.

*/ inline const Aws::String& GetFraudsterId() const{ return m_fraudsterId; } /** *

The identifier of the fraudster to be disassociated from the watchlist.

*/ inline bool FraudsterIdHasBeenSet() const { return m_fraudsterIdHasBeenSet; } /** *

The identifier of the fraudster to be disassociated from the watchlist.

*/ inline void SetFraudsterId(const Aws::String& value) { m_fraudsterIdHasBeenSet = true; m_fraudsterId = value; } /** *

The identifier of the fraudster to be disassociated from the watchlist.

*/ inline void SetFraudsterId(Aws::String&& value) { m_fraudsterIdHasBeenSet = true; m_fraudsterId = std::move(value); } /** *

The identifier of the fraudster to be disassociated from the watchlist.

*/ inline void SetFraudsterId(const char* value) { m_fraudsterIdHasBeenSet = true; m_fraudsterId.assign(value); } /** *

The identifier of the fraudster to be disassociated from the watchlist.

*/ inline DisassociateFraudsterRequest& WithFraudsterId(const Aws::String& value) { SetFraudsterId(value); return *this;} /** *

The identifier of the fraudster to be disassociated from the watchlist.

*/ inline DisassociateFraudsterRequest& WithFraudsterId(Aws::String&& value) { SetFraudsterId(std::move(value)); return *this;} /** *

The identifier of the fraudster to be disassociated from the watchlist.

*/ inline DisassociateFraudsterRequest& WithFraudsterId(const char* value) { SetFraudsterId(value); return *this;} /** *

The identifier of the watchlist that you want to disassociate from the * fraudster.

*/ inline const Aws::String& GetWatchlistId() const{ return m_watchlistId; } /** *

The identifier of the watchlist that you want to disassociate from the * fraudster.

*/ inline bool WatchlistIdHasBeenSet() const { return m_watchlistIdHasBeenSet; } /** *

The identifier of the watchlist that you want to disassociate from the * fraudster.

*/ inline void SetWatchlistId(const Aws::String& value) { m_watchlistIdHasBeenSet = true; m_watchlistId = value; } /** *

The identifier of the watchlist that you want to disassociate from the * fraudster.

*/ inline void SetWatchlistId(Aws::String&& value) { m_watchlistIdHasBeenSet = true; m_watchlistId = std::move(value); } /** *

The identifier of the watchlist that you want to disassociate from the * fraudster.

*/ inline void SetWatchlistId(const char* value) { m_watchlistIdHasBeenSet = true; m_watchlistId.assign(value); } /** *

The identifier of the watchlist that you want to disassociate from the * fraudster.

*/ inline DisassociateFraudsterRequest& WithWatchlistId(const Aws::String& value) { SetWatchlistId(value); return *this;} /** *

The identifier of the watchlist that you want to disassociate from the * fraudster.

*/ inline DisassociateFraudsterRequest& WithWatchlistId(Aws::String&& value) { SetWatchlistId(std::move(value)); return *this;} /** *

The identifier of the watchlist that you want to disassociate from the * fraudster.

*/ inline DisassociateFraudsterRequest& WithWatchlistId(const char* value) { SetWatchlistId(value); return *this;} private: Aws::String m_domainId; bool m_domainIdHasBeenSet = false; Aws::String m_fraudsterId; bool m_fraudsterIdHasBeenSet = false; Aws::String m_watchlistId; bool m_watchlistIdHasBeenSet = false; }; } // namespace Model } // namespace VoiceID } // namespace Aws