/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace KinesisVideoSignalingChannels { namespace Model { class AWS_KINESISVIDEOSIGNALINGCHANNELS_API GetIceServerConfigResult { public: GetIceServerConfigResult(); GetIceServerConfigResult(const Aws::AmazonWebServiceResult& result); GetIceServerConfigResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The list of ICE server information objects.

*/ inline const Aws::Vector& GetIceServerList() const{ return m_iceServerList; } /** *

The list of ICE server information objects.

*/ inline void SetIceServerList(const Aws::Vector& value) { m_iceServerList = value; } /** *

The list of ICE server information objects.

*/ inline void SetIceServerList(Aws::Vector&& value) { m_iceServerList = std::move(value); } /** *

The list of ICE server information objects.

*/ inline GetIceServerConfigResult& WithIceServerList(const Aws::Vector& value) { SetIceServerList(value); return *this;} /** *

The list of ICE server information objects.

*/ inline GetIceServerConfigResult& WithIceServerList(Aws::Vector&& value) { SetIceServerList(std::move(value)); return *this;} /** *

The list of ICE server information objects.

*/ inline GetIceServerConfigResult& AddIceServerList(const IceServer& value) { m_iceServerList.push_back(value); return *this; } /** *

The list of ICE server information objects.

*/ inline GetIceServerConfigResult& AddIceServerList(IceServer&& value) { m_iceServerList.push_back(std::move(value)); return *this; } private: Aws::Vector m_iceServerList; }; } // namespace Model } // namespace KinesisVideoSignalingChannels } // namespace Aws