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

The details of the streaming configuration.

*/ inline const StreamingConfiguration& GetStreamingConfiguration() const{ return m_streamingConfiguration; } /** *

The details of the streaming configuration.

*/ inline void SetStreamingConfiguration(const StreamingConfiguration& value) { m_streamingConfiguration = value; } /** *

The details of the streaming configuration.

*/ inline void SetStreamingConfiguration(StreamingConfiguration&& value) { m_streamingConfiguration = std::move(value); } /** *

The details of the streaming configuration.

*/ inline GetVoiceConnectorStreamingConfigurationResult& WithStreamingConfiguration(const StreamingConfiguration& value) { SetStreamingConfiguration(value); return *this;} /** *

The details of the streaming configuration.

*/ inline GetVoiceConnectorStreamingConfigurationResult& WithStreamingConfiguration(StreamingConfiguration&& value) { SetStreamingConfiguration(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 GetVoiceConnectorStreamingConfigurationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetVoiceConnectorStreamingConfigurationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetVoiceConnectorStreamingConfigurationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: StreamingConfiguration m_streamingConfiguration; Aws::String m_requestId; }; } // namespace Model } // namespace ChimeSDKVoice } // namespace Aws