128 lines
3.8 KiB
C++
128 lines
3.8 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/connect/ConnectRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Connect
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_CONNECT_API StopContactRequest : public ConnectRequest
|
|
{
|
|
public:
|
|
StopContactRequest();
|
|
|
|
// 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 "StopContact"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
|
|
/**
|
|
* <p>The ID of the contact.</p>
|
|
*/
|
|
inline const Aws::String& GetContactId() const{ return m_contactId; }
|
|
|
|
/**
|
|
* <p>The ID of the contact.</p>
|
|
*/
|
|
inline bool ContactIdHasBeenSet() const { return m_contactIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID of the contact.</p>
|
|
*/
|
|
inline void SetContactId(const Aws::String& value) { m_contactIdHasBeenSet = true; m_contactId = value; }
|
|
|
|
/**
|
|
* <p>The ID of the contact.</p>
|
|
*/
|
|
inline void SetContactId(Aws::String&& value) { m_contactIdHasBeenSet = true; m_contactId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ID of the contact.</p>
|
|
*/
|
|
inline void SetContactId(const char* value) { m_contactIdHasBeenSet = true; m_contactId.assign(value); }
|
|
|
|
/**
|
|
* <p>The ID of the contact.</p>
|
|
*/
|
|
inline StopContactRequest& WithContactId(const Aws::String& value) { SetContactId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the contact.</p>
|
|
*/
|
|
inline StopContactRequest& WithContactId(Aws::String&& value) { SetContactId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the contact.</p>
|
|
*/
|
|
inline StopContactRequest& WithContactId(const char* value) { SetContactId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The identifier of the Amazon Connect instance.</p>
|
|
*/
|
|
inline const Aws::String& GetInstanceId() const{ return m_instanceId; }
|
|
|
|
/**
|
|
* <p>The identifier of the Amazon Connect instance.</p>
|
|
*/
|
|
inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The identifier of the Amazon Connect instance.</p>
|
|
*/
|
|
inline void SetInstanceId(const Aws::String& value) { m_instanceIdHasBeenSet = true; m_instanceId = value; }
|
|
|
|
/**
|
|
* <p>The identifier of the Amazon Connect instance.</p>
|
|
*/
|
|
inline void SetInstanceId(Aws::String&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The identifier of the Amazon Connect instance.</p>
|
|
*/
|
|
inline void SetInstanceId(const char* value) { m_instanceIdHasBeenSet = true; m_instanceId.assign(value); }
|
|
|
|
/**
|
|
* <p>The identifier of the Amazon Connect instance.</p>
|
|
*/
|
|
inline StopContactRequest& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The identifier of the Amazon Connect instance.</p>
|
|
*/
|
|
inline StopContactRequest& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The identifier of the Amazon Connect instance.</p>
|
|
*/
|
|
inline StopContactRequest& WithInstanceId(const char* value) { SetInstanceId(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_contactId;
|
|
bool m_contactIdHasBeenSet;
|
|
|
|
Aws::String m_instanceId;
|
|
bool m_instanceIdHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Connect
|
|
} // namespace Aws
|