78 lines
2.2 KiB
C++
78 lines
2.2 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/connect/Connect_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace Connect
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_CONNECT_API StartOutboundVoiceContactResult
|
|
{
|
|
public:
|
|
StartOutboundVoiceContactResult();
|
|
StartOutboundVoiceContactResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
StartOutboundVoiceContactResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The identifier of this contact within the Amazon Connect instance.</p>
|
|
*/
|
|
inline const Aws::String& GetContactId() const{ return m_contactId; }
|
|
|
|
/**
|
|
* <p>The identifier of this contact within the Amazon Connect instance.</p>
|
|
*/
|
|
inline void SetContactId(const Aws::String& value) { m_contactId = value; }
|
|
|
|
/**
|
|
* <p>The identifier of this contact within the Amazon Connect instance.</p>
|
|
*/
|
|
inline void SetContactId(Aws::String&& value) { m_contactId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The identifier of this contact within the Amazon Connect instance.</p>
|
|
*/
|
|
inline void SetContactId(const char* value) { m_contactId.assign(value); }
|
|
|
|
/**
|
|
* <p>The identifier of this contact within the Amazon Connect instance.</p>
|
|
*/
|
|
inline StartOutboundVoiceContactResult& WithContactId(const Aws::String& value) { SetContactId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The identifier of this contact within the Amazon Connect instance.</p>
|
|
*/
|
|
inline StartOutboundVoiceContactResult& WithContactId(Aws::String&& value) { SetContactId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The identifier of this contact within the Amazon Connect instance.</p>
|
|
*/
|
|
inline StartOutboundVoiceContactResult& WithContactId(const char* value) { SetContactId(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_contactId;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Connect
|
|
} // namespace Aws
|