/** * 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 KinesisVideo { namespace Model { class AWS_KINESISVIDEO_API GetSignalingChannelEndpointResult { public: GetSignalingChannelEndpointResult(); GetSignalingChannelEndpointResult(const Aws::AmazonWebServiceResult& result); GetSignalingChannelEndpointResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A list of endpoints for the specified signaling channel.

*/ inline const Aws::Vector& GetResourceEndpointList() const{ return m_resourceEndpointList; } /** *

A list of endpoints for the specified signaling channel.

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

A list of endpoints for the specified signaling channel.

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

A list of endpoints for the specified signaling channel.

*/ inline GetSignalingChannelEndpointResult& WithResourceEndpointList(const Aws::Vector& value) { SetResourceEndpointList(value); return *this;} /** *

A list of endpoints for the specified signaling channel.

*/ inline GetSignalingChannelEndpointResult& WithResourceEndpointList(Aws::Vector&& value) { SetResourceEndpointList(std::move(value)); return *this;} /** *

A list of endpoints for the specified signaling channel.

*/ inline GetSignalingChannelEndpointResult& AddResourceEndpointList(const ResourceEndpointListItem& value) { m_resourceEndpointList.push_back(value); return *this; } /** *

A list of endpoints for the specified signaling channel.

*/ inline GetSignalingChannelEndpointResult& AddResourceEndpointList(ResourceEndpointListItem&& value) { m_resourceEndpointList.push_back(std::move(value)); return *this; } private: Aws::Vector m_resourceEndpointList; }; } // namespace Model } // namespace KinesisVideo } // namespace Aws