245 lines
11 KiB
C++
245 lines
11 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 <aws/core/utils/memory/stl/AWSMap.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Connect
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_CONNECT_API UpdateContactAttributesRequest : public ConnectRequest
|
|
{
|
|
public:
|
|
UpdateContactAttributesRequest();
|
|
|
|
// 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 "UpdateContactAttributes"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
|
|
/**
|
|
* <p>The identifier of the contact. This is the identifier of the contact
|
|
* associated with the first interaction with the contact center.</p>
|
|
*/
|
|
inline const Aws::String& GetInitialContactId() const{ return m_initialContactId; }
|
|
|
|
/**
|
|
* <p>The identifier of the contact. This is the identifier of the contact
|
|
* associated with the first interaction with the contact center.</p>
|
|
*/
|
|
inline bool InitialContactIdHasBeenSet() const { return m_initialContactIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The identifier of the contact. This is the identifier of the contact
|
|
* associated with the first interaction with the contact center.</p>
|
|
*/
|
|
inline void SetInitialContactId(const Aws::String& value) { m_initialContactIdHasBeenSet = true; m_initialContactId = value; }
|
|
|
|
/**
|
|
* <p>The identifier of the contact. This is the identifier of the contact
|
|
* associated with the first interaction with the contact center.</p>
|
|
*/
|
|
inline void SetInitialContactId(Aws::String&& value) { m_initialContactIdHasBeenSet = true; m_initialContactId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The identifier of the contact. This is the identifier of the contact
|
|
* associated with the first interaction with the contact center.</p>
|
|
*/
|
|
inline void SetInitialContactId(const char* value) { m_initialContactIdHasBeenSet = true; m_initialContactId.assign(value); }
|
|
|
|
/**
|
|
* <p>The identifier of the contact. This is the identifier of the contact
|
|
* associated with the first interaction with the contact center.</p>
|
|
*/
|
|
inline UpdateContactAttributesRequest& WithInitialContactId(const Aws::String& value) { SetInitialContactId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The identifier of the contact. This is the identifier of the contact
|
|
* associated with the first interaction with the contact center.</p>
|
|
*/
|
|
inline UpdateContactAttributesRequest& WithInitialContactId(Aws::String&& value) { SetInitialContactId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The identifier of the contact. This is the identifier of the contact
|
|
* associated with the first interaction with the contact center.</p>
|
|
*/
|
|
inline UpdateContactAttributesRequest& WithInitialContactId(const char* value) { SetInitialContactId(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 UpdateContactAttributesRequest& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The identifier of the Amazon Connect instance.</p>
|
|
*/
|
|
inline UpdateContactAttributesRequest& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The identifier of the Amazon Connect instance.</p>
|
|
*/
|
|
inline UpdateContactAttributesRequest& WithInstanceId(const char* value) { SetInstanceId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The Amazon Connect attributes. These attributes can be accessed in contact
|
|
* flows just like any other contact attributes.</p> <p>You can have up to 32,768
|
|
* UTF-8 bytes across all attributes for a contact. Attribute keys can include only
|
|
* alphanumeric, dash, and underscore characters.</p>
|
|
*/
|
|
inline const Aws::Map<Aws::String, Aws::String>& GetAttributes() const{ return m_attributes; }
|
|
|
|
/**
|
|
* <p>The Amazon Connect attributes. These attributes can be accessed in contact
|
|
* flows just like any other contact attributes.</p> <p>You can have up to 32,768
|
|
* UTF-8 bytes across all attributes for a contact. Attribute keys can include only
|
|
* alphanumeric, dash, and underscore characters.</p>
|
|
*/
|
|
inline bool AttributesHasBeenSet() const { return m_attributesHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The Amazon Connect attributes. These attributes can be accessed in contact
|
|
* flows just like any other contact attributes.</p> <p>You can have up to 32,768
|
|
* UTF-8 bytes across all attributes for a contact. Attribute keys can include only
|
|
* alphanumeric, dash, and underscore characters.</p>
|
|
*/
|
|
inline void SetAttributes(const Aws::Map<Aws::String, Aws::String>& value) { m_attributesHasBeenSet = true; m_attributes = value; }
|
|
|
|
/**
|
|
* <p>The Amazon Connect attributes. These attributes can be accessed in contact
|
|
* flows just like any other contact attributes.</p> <p>You can have up to 32,768
|
|
* UTF-8 bytes across all attributes for a contact. Attribute keys can include only
|
|
* alphanumeric, dash, and underscore characters.</p>
|
|
*/
|
|
inline void SetAttributes(Aws::Map<Aws::String, Aws::String>&& value) { m_attributesHasBeenSet = true; m_attributes = std::move(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Connect attributes. These attributes can be accessed in contact
|
|
* flows just like any other contact attributes.</p> <p>You can have up to 32,768
|
|
* UTF-8 bytes across all attributes for a contact. Attribute keys can include only
|
|
* alphanumeric, dash, and underscore characters.</p>
|
|
*/
|
|
inline UpdateContactAttributesRequest& WithAttributes(const Aws::Map<Aws::String, Aws::String>& value) { SetAttributes(value); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Connect attributes. These attributes can be accessed in contact
|
|
* flows just like any other contact attributes.</p> <p>You can have up to 32,768
|
|
* UTF-8 bytes across all attributes for a contact. Attribute keys can include only
|
|
* alphanumeric, dash, and underscore characters.</p>
|
|
*/
|
|
inline UpdateContactAttributesRequest& WithAttributes(Aws::Map<Aws::String, Aws::String>&& value) { SetAttributes(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Connect attributes. These attributes can be accessed in contact
|
|
* flows just like any other contact attributes.</p> <p>You can have up to 32,768
|
|
* UTF-8 bytes across all attributes for a contact. Attribute keys can include only
|
|
* alphanumeric, dash, and underscore characters.</p>
|
|
*/
|
|
inline UpdateContactAttributesRequest& AddAttributes(const Aws::String& key, const Aws::String& value) { m_attributesHasBeenSet = true; m_attributes.emplace(key, value); return *this; }
|
|
|
|
/**
|
|
* <p>The Amazon Connect attributes. These attributes can be accessed in contact
|
|
* flows just like any other contact attributes.</p> <p>You can have up to 32,768
|
|
* UTF-8 bytes across all attributes for a contact. Attribute keys can include only
|
|
* alphanumeric, dash, and underscore characters.</p>
|
|
*/
|
|
inline UpdateContactAttributesRequest& AddAttributes(Aws::String&& key, const Aws::String& value) { m_attributesHasBeenSet = true; m_attributes.emplace(std::move(key), value); return *this; }
|
|
|
|
/**
|
|
* <p>The Amazon Connect attributes. These attributes can be accessed in contact
|
|
* flows just like any other contact attributes.</p> <p>You can have up to 32,768
|
|
* UTF-8 bytes across all attributes for a contact. Attribute keys can include only
|
|
* alphanumeric, dash, and underscore characters.</p>
|
|
*/
|
|
inline UpdateContactAttributesRequest& AddAttributes(const Aws::String& key, Aws::String&& value) { m_attributesHasBeenSet = true; m_attributes.emplace(key, std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>The Amazon Connect attributes. These attributes can be accessed in contact
|
|
* flows just like any other contact attributes.</p> <p>You can have up to 32,768
|
|
* UTF-8 bytes across all attributes for a contact. Attribute keys can include only
|
|
* alphanumeric, dash, and underscore characters.</p>
|
|
*/
|
|
inline UpdateContactAttributesRequest& AddAttributes(Aws::String&& key, Aws::String&& value) { m_attributesHasBeenSet = true; m_attributes.emplace(std::move(key), std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>The Amazon Connect attributes. These attributes can be accessed in contact
|
|
* flows just like any other contact attributes.</p> <p>You can have up to 32,768
|
|
* UTF-8 bytes across all attributes for a contact. Attribute keys can include only
|
|
* alphanumeric, dash, and underscore characters.</p>
|
|
*/
|
|
inline UpdateContactAttributesRequest& AddAttributes(const char* key, Aws::String&& value) { m_attributesHasBeenSet = true; m_attributes.emplace(key, std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>The Amazon Connect attributes. These attributes can be accessed in contact
|
|
* flows just like any other contact attributes.</p> <p>You can have up to 32,768
|
|
* UTF-8 bytes across all attributes for a contact. Attribute keys can include only
|
|
* alphanumeric, dash, and underscore characters.</p>
|
|
*/
|
|
inline UpdateContactAttributesRequest& AddAttributes(Aws::String&& key, const char* value) { m_attributesHasBeenSet = true; m_attributes.emplace(std::move(key), value); return *this; }
|
|
|
|
/**
|
|
* <p>The Amazon Connect attributes. These attributes can be accessed in contact
|
|
* flows just like any other contact attributes.</p> <p>You can have up to 32,768
|
|
* UTF-8 bytes across all attributes for a contact. Attribute keys can include only
|
|
* alphanumeric, dash, and underscore characters.</p>
|
|
*/
|
|
inline UpdateContactAttributesRequest& AddAttributes(const char* key, const char* value) { m_attributesHasBeenSet = true; m_attributes.emplace(key, value); return *this; }
|
|
|
|
private:
|
|
|
|
Aws::String m_initialContactId;
|
|
bool m_initialContactIdHasBeenSet;
|
|
|
|
Aws::String m_instanceId;
|
|
bool m_instanceIdHasBeenSet;
|
|
|
|
Aws::Map<Aws::String, Aws::String> m_attributes;
|
|
bool m_attributesHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Connect
|
|
} // namespace Aws
|