/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace Connect { namespace Model { /** */ class UpdateContactAttributesRequest : public ConnectRequest { public: AWS_CONNECT_API 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_CONNECT_API Aws::String SerializePayload() const override; /** *

The identifier of the contact. This is the identifier of the contact * associated with the first interaction with the contact center.

*/ inline const Aws::String& GetInitialContactId() const{ return m_initialContactId; } /** *

The identifier of the contact. This is the identifier of the contact * associated with the first interaction with the contact center.

*/ inline bool InitialContactIdHasBeenSet() const { return m_initialContactIdHasBeenSet; } /** *

The identifier of the contact. This is the identifier of the contact * associated with the first interaction with the contact center.

*/ inline void SetInitialContactId(const Aws::String& value) { m_initialContactIdHasBeenSet = true; m_initialContactId = value; } /** *

The identifier of the contact. This is the identifier of the contact * associated with the first interaction with the contact center.

*/ inline void SetInitialContactId(Aws::String&& value) { m_initialContactIdHasBeenSet = true; m_initialContactId = std::move(value); } /** *

The identifier of the contact. This is the identifier of the contact * associated with the first interaction with the contact center.

*/ inline void SetInitialContactId(const char* value) { m_initialContactIdHasBeenSet = true; m_initialContactId.assign(value); } /** *

The identifier of the contact. This is the identifier of the contact * associated with the first interaction with the contact center.

*/ inline UpdateContactAttributesRequest& WithInitialContactId(const Aws::String& value) { SetInitialContactId(value); return *this;} /** *

The identifier of the contact. This is the identifier of the contact * associated with the first interaction with the contact center.

*/ inline UpdateContactAttributesRequest& WithInitialContactId(Aws::String&& value) { SetInitialContactId(std::move(value)); return *this;} /** *

The identifier of the contact. This is the identifier of the contact * associated with the first interaction with the contact center.

*/ inline UpdateContactAttributesRequest& WithInitialContactId(const char* value) { SetInitialContactId(value); return *this;} /** *

The identifier of the Amazon Connect instance. You can find * the instance ID in the Amazon Resource Name (ARN) of the instance.

*/ inline const Aws::String& GetInstanceId() const{ return m_instanceId; } /** *

The identifier of the Amazon Connect instance. You can find * the instance ID in the Amazon Resource Name (ARN) of the instance.

*/ inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; } /** *

The identifier of the Amazon Connect instance. You can find * the instance ID in the Amazon Resource Name (ARN) of the instance.

*/ inline void SetInstanceId(const Aws::String& value) { m_instanceIdHasBeenSet = true; m_instanceId = value; } /** *

The identifier of the Amazon Connect instance. You can find * the instance ID in the Amazon Resource Name (ARN) of the instance.

*/ inline void SetInstanceId(Aws::String&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::move(value); } /** *

The identifier of the Amazon Connect instance. You can find * the instance ID in the Amazon Resource Name (ARN) of the instance.

*/ inline void SetInstanceId(const char* value) { m_instanceIdHasBeenSet = true; m_instanceId.assign(value); } /** *

The identifier of the Amazon Connect instance. You can find * the instance ID in the Amazon Resource Name (ARN) of the instance.

*/ inline UpdateContactAttributesRequest& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;} /** *

The identifier of the Amazon Connect instance. You can find * the instance ID in the Amazon Resource Name (ARN) of the instance.

*/ inline UpdateContactAttributesRequest& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;} /** *

The identifier of the Amazon Connect instance. You can find * the instance ID in the Amazon Resource Name (ARN) of the instance.

*/ inline UpdateContactAttributesRequest& WithInstanceId(const char* value) { SetInstanceId(value); return *this;} /** *

The Amazon Connect attributes. These attributes can be accessed in flows just * like any other contact attributes.

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.

*/ inline const Aws::Map& GetAttributes() const{ return m_attributes; } /** *

The Amazon Connect attributes. These attributes can be accessed in flows just * like any other contact attributes.

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.

*/ inline bool AttributesHasBeenSet() const { return m_attributesHasBeenSet; } /** *

The Amazon Connect attributes. These attributes can be accessed in flows just * like any other contact attributes.

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.

*/ inline void SetAttributes(const Aws::Map& value) { m_attributesHasBeenSet = true; m_attributes = value; } /** *

The Amazon Connect attributes. These attributes can be accessed in flows just * like any other contact attributes.

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.

*/ inline void SetAttributes(Aws::Map&& value) { m_attributesHasBeenSet = true; m_attributes = std::move(value); } /** *

The Amazon Connect attributes. These attributes can be accessed in flows just * like any other contact attributes.

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.

*/ inline UpdateContactAttributesRequest& WithAttributes(const Aws::Map& value) { SetAttributes(value); return *this;} /** *

The Amazon Connect attributes. These attributes can be accessed in flows just * like any other contact attributes.

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.

*/ inline UpdateContactAttributesRequest& WithAttributes(Aws::Map&& value) { SetAttributes(std::move(value)); return *this;} /** *

The Amazon Connect attributes. These attributes can be accessed in flows just * like any other contact attributes.

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.

*/ inline UpdateContactAttributesRequest& AddAttributes(const Aws::String& key, const Aws::String& value) { m_attributesHasBeenSet = true; m_attributes.emplace(key, value); return *this; } /** *

The Amazon Connect attributes. These attributes can be accessed in flows just * like any other contact attributes.

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.

*/ inline UpdateContactAttributesRequest& AddAttributes(Aws::String&& key, const Aws::String& value) { m_attributesHasBeenSet = true; m_attributes.emplace(std::move(key), value); return *this; } /** *

The Amazon Connect attributes. These attributes can be accessed in flows just * like any other contact attributes.

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.

*/ inline UpdateContactAttributesRequest& AddAttributes(const Aws::String& key, Aws::String&& value) { m_attributesHasBeenSet = true; m_attributes.emplace(key, std::move(value)); return *this; } /** *

The Amazon Connect attributes. These attributes can be accessed in flows just * like any other contact attributes.

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.

*/ inline UpdateContactAttributesRequest& AddAttributes(Aws::String&& key, Aws::String&& value) { m_attributesHasBeenSet = true; m_attributes.emplace(std::move(key), std::move(value)); return *this; } /** *

The Amazon Connect attributes. These attributes can be accessed in flows just * like any other contact attributes.

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.

*/ inline UpdateContactAttributesRequest& AddAttributes(const char* key, Aws::String&& value) { m_attributesHasBeenSet = true; m_attributes.emplace(key, std::move(value)); return *this; } /** *

The Amazon Connect attributes. These attributes can be accessed in flows just * like any other contact attributes.

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.

*/ inline UpdateContactAttributesRequest& AddAttributes(Aws::String&& key, const char* value) { m_attributesHasBeenSet = true; m_attributes.emplace(std::move(key), value); return *this; } /** *

The Amazon Connect attributes. These attributes can be accessed in flows just * like any other contact attributes.

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.

*/ 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 = false; Aws::String m_instanceId; bool m_instanceIdHasBeenSet = false; Aws::Map m_attributes; bool m_attributesHasBeenSet = false; }; } // namespace Model } // namespace Connect } // namespace Aws