/** * 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 Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace MediaPackage { namespace Model { /** * An HTTP Live Streaming (HLS) ingest resource configuration.

See Also:

* AWS * API Reference

*/ class AWS_MEDIAPACKAGE_API HlsIngest { public: HlsIngest(); HlsIngest(Aws::Utils::Json::JsonView jsonValue); HlsIngest& operator=(Aws::Utils::Json::JsonView jsonValue); Aws::Utils::Json::JsonValue Jsonize() const; /** * A list of endpoints to which the source stream should be sent. */ inline const Aws::Vector& GetIngestEndpoints() const{ return m_ingestEndpoints; } /** * A list of endpoints to which the source stream should be sent. */ inline bool IngestEndpointsHasBeenSet() const { return m_ingestEndpointsHasBeenSet; } /** * A list of endpoints to which the source stream should be sent. */ inline void SetIngestEndpoints(const Aws::Vector& value) { m_ingestEndpointsHasBeenSet = true; m_ingestEndpoints = value; } /** * A list of endpoints to which the source stream should be sent. */ inline void SetIngestEndpoints(Aws::Vector&& value) { m_ingestEndpointsHasBeenSet = true; m_ingestEndpoints = std::move(value); } /** * A list of endpoints to which the source stream should be sent. */ inline HlsIngest& WithIngestEndpoints(const Aws::Vector& value) { SetIngestEndpoints(value); return *this;} /** * A list of endpoints to which the source stream should be sent. */ inline HlsIngest& WithIngestEndpoints(Aws::Vector&& value) { SetIngestEndpoints(std::move(value)); return *this;} /** * A list of endpoints to which the source stream should be sent. */ inline HlsIngest& AddIngestEndpoints(const IngestEndpoint& value) { m_ingestEndpointsHasBeenSet = true; m_ingestEndpoints.push_back(value); return *this; } /** * A list of endpoints to which the source stream should be sent. */ inline HlsIngest& AddIngestEndpoints(IngestEndpoint&& value) { m_ingestEndpointsHasBeenSet = true; m_ingestEndpoints.push_back(std::move(value)); return *this; } private: Aws::Vector m_ingestEndpoints; bool m_ingestEndpointsHasBeenSet; }; } // namespace Model } // namespace MediaPackage } // namespace Aws