/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information about the quick connect configuration settings for a
* user. The contact flow must be of type Transfer to Agent.See
* Also:
AWS
* API Reference
The identifier of the user.
*/ inline const Aws::String& GetUserId() const{ return m_userId; } /** *The identifier of the user.
*/ inline bool UserIdHasBeenSet() const { return m_userIdHasBeenSet; } /** *The identifier of the user.
*/ inline void SetUserId(const Aws::String& value) { m_userIdHasBeenSet = true; m_userId = value; } /** *The identifier of the user.
*/ inline void SetUserId(Aws::String&& value) { m_userIdHasBeenSet = true; m_userId = std::move(value); } /** *The identifier of the user.
*/ inline void SetUserId(const char* value) { m_userIdHasBeenSet = true; m_userId.assign(value); } /** *The identifier of the user.
*/ inline UserQuickConnectConfig& WithUserId(const Aws::String& value) { SetUserId(value); return *this;} /** *The identifier of the user.
*/ inline UserQuickConnectConfig& WithUserId(Aws::String&& value) { SetUserId(std::move(value)); return *this;} /** *The identifier of the user.
*/ inline UserQuickConnectConfig& WithUserId(const char* value) { SetUserId(value); return *this;} /** *The identifier of the flow.
*/ inline const Aws::String& GetContactFlowId() const{ return m_contactFlowId; } /** *The identifier of the flow.
*/ inline bool ContactFlowIdHasBeenSet() const { return m_contactFlowIdHasBeenSet; } /** *The identifier of the flow.
*/ inline void SetContactFlowId(const Aws::String& value) { m_contactFlowIdHasBeenSet = true; m_contactFlowId = value; } /** *The identifier of the flow.
*/ inline void SetContactFlowId(Aws::String&& value) { m_contactFlowIdHasBeenSet = true; m_contactFlowId = std::move(value); } /** *The identifier of the flow.
*/ inline void SetContactFlowId(const char* value) { m_contactFlowIdHasBeenSet = true; m_contactFlowId.assign(value); } /** *The identifier of the flow.
*/ inline UserQuickConnectConfig& WithContactFlowId(const Aws::String& value) { SetContactFlowId(value); return *this;} /** *The identifier of the flow.
*/ inline UserQuickConnectConfig& WithContactFlowId(Aws::String&& value) { SetContactFlowId(std::move(value)); return *this;} /** *The identifier of the flow.
*/ inline UserQuickConnectConfig& WithContactFlowId(const char* value) { SetContactFlowId(value); return *this;} private: Aws::String m_userId; bool m_userIdHasBeenSet = false; Aws::String m_contactFlowId; bool m_contactFlowIdHasBeenSet = false; }; } // namespace Model } // namespace Connect } // namespace Aws