/** * 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 VoiceID { namespace Model { /** *

Details of the watchlists in a domain.

See Also:

AWS * API Reference

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

The identifier of the default watchlist.

*/ inline const Aws::String& GetDefaultWatchlistId() const{ return m_defaultWatchlistId; } /** *

The identifier of the default watchlist.

*/ inline bool DefaultWatchlistIdHasBeenSet() const { return m_defaultWatchlistIdHasBeenSet; } /** *

The identifier of the default watchlist.

*/ inline void SetDefaultWatchlistId(const Aws::String& value) { m_defaultWatchlistIdHasBeenSet = true; m_defaultWatchlistId = value; } /** *

The identifier of the default watchlist.

*/ inline void SetDefaultWatchlistId(Aws::String&& value) { m_defaultWatchlistIdHasBeenSet = true; m_defaultWatchlistId = std::move(value); } /** *

The identifier of the default watchlist.

*/ inline void SetDefaultWatchlistId(const char* value) { m_defaultWatchlistIdHasBeenSet = true; m_defaultWatchlistId.assign(value); } /** *

The identifier of the default watchlist.

*/ inline WatchlistDetails& WithDefaultWatchlistId(const Aws::String& value) { SetDefaultWatchlistId(value); return *this;} /** *

The identifier of the default watchlist.

*/ inline WatchlistDetails& WithDefaultWatchlistId(Aws::String&& value) { SetDefaultWatchlistId(std::move(value)); return *this;} /** *

The identifier of the default watchlist.

*/ inline WatchlistDetails& WithDefaultWatchlistId(const char* value) { SetDefaultWatchlistId(value); return *this;} private: Aws::String m_defaultWatchlistId; bool m_defaultWatchlistIdHasBeenSet = false; }; } // namespace Model } // namespace VoiceID } // namespace Aws