This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-chime/include/aws/chime/model/GetProxySessionRequest.h

128 lines
3.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/chime/Chime_EXPORTS.h>
#include <aws/chime/ChimeRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Chime
{
namespace Model
{
/**
*/
class AWS_CHIME_API GetProxySessionRequest : public ChimeRequest
{
public:
GetProxySessionRequest();
// 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 "GetProxySession"; }
Aws::String SerializePayload() const override;
/**
* <p>The Amazon Chime voice connector ID.</p>
*/
inline const Aws::String& GetVoiceConnectorId() const{ return m_voiceConnectorId; }
/**
* <p>The Amazon Chime voice connector ID.</p>
*/
inline bool VoiceConnectorIdHasBeenSet() const { return m_voiceConnectorIdHasBeenSet; }
/**
* <p>The Amazon Chime voice connector ID.</p>
*/
inline void SetVoiceConnectorId(const Aws::String& value) { m_voiceConnectorIdHasBeenSet = true; m_voiceConnectorId = value; }
/**
* <p>The Amazon Chime voice connector ID.</p>
*/
inline void SetVoiceConnectorId(Aws::String&& value) { m_voiceConnectorIdHasBeenSet = true; m_voiceConnectorId = std::move(value); }
/**
* <p>The Amazon Chime voice connector ID.</p>
*/
inline void SetVoiceConnectorId(const char* value) { m_voiceConnectorIdHasBeenSet = true; m_voiceConnectorId.assign(value); }
/**
* <p>The Amazon Chime voice connector ID.</p>
*/
inline GetProxySessionRequest& WithVoiceConnectorId(const Aws::String& value) { SetVoiceConnectorId(value); return *this;}
/**
* <p>The Amazon Chime voice connector ID.</p>
*/
inline GetProxySessionRequest& WithVoiceConnectorId(Aws::String&& value) { SetVoiceConnectorId(std::move(value)); return *this;}
/**
* <p>The Amazon Chime voice connector ID.</p>
*/
inline GetProxySessionRequest& WithVoiceConnectorId(const char* value) { SetVoiceConnectorId(value); return *this;}
/**
* <p>The proxy session ID.</p>
*/
inline const Aws::String& GetProxySessionId() const{ return m_proxySessionId; }
/**
* <p>The proxy session ID.</p>
*/
inline bool ProxySessionIdHasBeenSet() const { return m_proxySessionIdHasBeenSet; }
/**
* <p>The proxy session ID.</p>
*/
inline void SetProxySessionId(const Aws::String& value) { m_proxySessionIdHasBeenSet = true; m_proxySessionId = value; }
/**
* <p>The proxy session ID.</p>
*/
inline void SetProxySessionId(Aws::String&& value) { m_proxySessionIdHasBeenSet = true; m_proxySessionId = std::move(value); }
/**
* <p>The proxy session ID.</p>
*/
inline void SetProxySessionId(const char* value) { m_proxySessionIdHasBeenSet = true; m_proxySessionId.assign(value); }
/**
* <p>The proxy session ID.</p>
*/
inline GetProxySessionRequest& WithProxySessionId(const Aws::String& value) { SetProxySessionId(value); return *this;}
/**
* <p>The proxy session ID.</p>
*/
inline GetProxySessionRequest& WithProxySessionId(Aws::String&& value) { SetProxySessionId(std::move(value)); return *this;}
/**
* <p>The proxy session ID.</p>
*/
inline GetProxySessionRequest& WithProxySessionId(const char* value) { SetProxySessionId(value); return *this;}
private:
Aws::String m_voiceConnectorId;
bool m_voiceConnectorIdHasBeenSet;
Aws::String m_proxySessionId;
bool m_proxySessionIdHasBeenSet;
};
} // namespace Model
} // namespace Chime
} // namespace Aws