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

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 UpdateRoutingProfileConcurrencyRequest& 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 UpdateRoutingProfileConcurrencyRequest& 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 UpdateRoutingProfileConcurrencyRequest& WithInstanceId(const char* value) { SetInstanceId(value); return *this;} /** *

The identifier of the routing profile.

*/ inline const Aws::String& GetRoutingProfileId() const{ return m_routingProfileId; } /** *

The identifier of the routing profile.

*/ inline bool RoutingProfileIdHasBeenSet() const { return m_routingProfileIdHasBeenSet; } /** *

The identifier of the routing profile.

*/ inline void SetRoutingProfileId(const Aws::String& value) { m_routingProfileIdHasBeenSet = true; m_routingProfileId = value; } /** *

The identifier of the routing profile.

*/ inline void SetRoutingProfileId(Aws::String&& value) { m_routingProfileIdHasBeenSet = true; m_routingProfileId = std::move(value); } /** *

The identifier of the routing profile.

*/ inline void SetRoutingProfileId(const char* value) { m_routingProfileIdHasBeenSet = true; m_routingProfileId.assign(value); } /** *

The identifier of the routing profile.

*/ inline UpdateRoutingProfileConcurrencyRequest& WithRoutingProfileId(const Aws::String& value) { SetRoutingProfileId(value); return *this;} /** *

The identifier of the routing profile.

*/ inline UpdateRoutingProfileConcurrencyRequest& WithRoutingProfileId(Aws::String&& value) { SetRoutingProfileId(std::move(value)); return *this;} /** *

The identifier of the routing profile.

*/ inline UpdateRoutingProfileConcurrencyRequest& WithRoutingProfileId(const char* value) { SetRoutingProfileId(value); return *this;} /** *

The channels that agents can handle in the Contact Control Panel (CCP).

*/ inline const Aws::Vector& GetMediaConcurrencies() const{ return m_mediaConcurrencies; } /** *

The channels that agents can handle in the Contact Control Panel (CCP).

*/ inline bool MediaConcurrenciesHasBeenSet() const { return m_mediaConcurrenciesHasBeenSet; } /** *

The channels that agents can handle in the Contact Control Panel (CCP).

*/ inline void SetMediaConcurrencies(const Aws::Vector& value) { m_mediaConcurrenciesHasBeenSet = true; m_mediaConcurrencies = value; } /** *

The channels that agents can handle in the Contact Control Panel (CCP).

*/ inline void SetMediaConcurrencies(Aws::Vector&& value) { m_mediaConcurrenciesHasBeenSet = true; m_mediaConcurrencies = std::move(value); } /** *

The channels that agents can handle in the Contact Control Panel (CCP).

*/ inline UpdateRoutingProfileConcurrencyRequest& WithMediaConcurrencies(const Aws::Vector& value) { SetMediaConcurrencies(value); return *this;} /** *

The channels that agents can handle in the Contact Control Panel (CCP).

*/ inline UpdateRoutingProfileConcurrencyRequest& WithMediaConcurrencies(Aws::Vector&& value) { SetMediaConcurrencies(std::move(value)); return *this;} /** *

The channels that agents can handle in the Contact Control Panel (CCP).

*/ inline UpdateRoutingProfileConcurrencyRequest& AddMediaConcurrencies(const MediaConcurrency& value) { m_mediaConcurrenciesHasBeenSet = true; m_mediaConcurrencies.push_back(value); return *this; } /** *

The channels that agents can handle in the Contact Control Panel (CCP).

*/ inline UpdateRoutingProfileConcurrencyRequest& AddMediaConcurrencies(MediaConcurrency&& value) { m_mediaConcurrenciesHasBeenSet = true; m_mediaConcurrencies.push_back(std::move(value)); return *this; } private: Aws::String m_instanceId; bool m_instanceIdHasBeenSet = false; Aws::String m_routingProfileId; bool m_routingProfileIdHasBeenSet = false; Aws::Vector m_mediaConcurrencies; bool m_mediaConcurrenciesHasBeenSet = false; }; } // namespace Model } // namespace Connect } // namespace Aws