/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace KinesisVideoSignalingChannels { namespace Model { class GetIceServerConfigResult { public: AWS_KINESISVIDEOSIGNALINGCHANNELS_API GetIceServerConfigResult(); AWS_KINESISVIDEOSIGNALINGCHANNELS_API GetIceServerConfigResult(const Aws::AmazonWebServiceResult& result); AWS_KINESISVIDEOSIGNALINGCHANNELS_API 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; } inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetIceServerConfigResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetIceServerConfigResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetIceServerConfigResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_iceServerList; Aws::String m_requestId; }; } // namespace Model } // namespace KinesisVideoSignalingChannels } // namespace Aws