/** * 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 MediaLive { namespace Model { /** * Placeholder documentation for StartMultiplexRequest

See Also:

AWS * API Reference

*/ class StartMultiplexRequest : public MediaLiveRequest { public: AWS_MEDIALIVE_API StartMultiplexRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "StartMultiplex"; } AWS_MEDIALIVE_API Aws::String SerializePayload() const override; /** * The ID of the multiplex. */ inline const Aws::String& GetMultiplexId() const{ return m_multiplexId; } /** * The ID of the multiplex. */ inline bool MultiplexIdHasBeenSet() const { return m_multiplexIdHasBeenSet; } /** * The ID of the multiplex. */ inline void SetMultiplexId(const Aws::String& value) { m_multiplexIdHasBeenSet = true; m_multiplexId = value; } /** * The ID of the multiplex. */ inline void SetMultiplexId(Aws::String&& value) { m_multiplexIdHasBeenSet = true; m_multiplexId = std::move(value); } /** * The ID of the multiplex. */ inline void SetMultiplexId(const char* value) { m_multiplexIdHasBeenSet = true; m_multiplexId.assign(value); } /** * The ID of the multiplex. */ inline StartMultiplexRequest& WithMultiplexId(const Aws::String& value) { SetMultiplexId(value); return *this;} /** * The ID of the multiplex. */ inline StartMultiplexRequest& WithMultiplexId(Aws::String&& value) { SetMultiplexId(std::move(value)); return *this;} /** * The ID of the multiplex. */ inline StartMultiplexRequest& WithMultiplexId(const char* value) { SetMultiplexId(value); return *this;} private: Aws::String m_multiplexId; bool m_multiplexIdHasBeenSet = false; }; } // namespace Model } // namespace MediaLive } // namespace Aws