/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace WorkSpaces { namespace Model { class DescribeAccountResult { public: AWS_WORKSPACES_API DescribeAccountResult(); AWS_WORKSPACES_API DescribeAccountResult(const Aws::AmazonWebServiceResult& result); AWS_WORKSPACES_API DescribeAccountResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The status of BYOL (whether BYOL is enabled or disabled).

*/ inline const DedicatedTenancySupportResultEnum& GetDedicatedTenancySupport() const{ return m_dedicatedTenancySupport; } /** *

The status of BYOL (whether BYOL is enabled or disabled).

*/ inline void SetDedicatedTenancySupport(const DedicatedTenancySupportResultEnum& value) { m_dedicatedTenancySupport = value; } /** *

The status of BYOL (whether BYOL is enabled or disabled).

*/ inline void SetDedicatedTenancySupport(DedicatedTenancySupportResultEnum&& value) { m_dedicatedTenancySupport = std::move(value); } /** *

The status of BYOL (whether BYOL is enabled or disabled).

*/ inline DescribeAccountResult& WithDedicatedTenancySupport(const DedicatedTenancySupportResultEnum& value) { SetDedicatedTenancySupport(value); return *this;} /** *

The status of BYOL (whether BYOL is enabled or disabled).

*/ inline DescribeAccountResult& WithDedicatedTenancySupport(DedicatedTenancySupportResultEnum&& value) { SetDedicatedTenancySupport(std::move(value)); return *this;} /** *

The IP address range, specified as an IPv4 CIDR block, used for the * management network interface.

The management network interface is * connected to a secure Amazon WorkSpaces management network. It is used for * interactive streaming of the WorkSpace desktop to Amazon WorkSpaces clients, and * to allow Amazon WorkSpaces to manage the WorkSpace.

*/ inline const Aws::String& GetDedicatedTenancyManagementCidrRange() const{ return m_dedicatedTenancyManagementCidrRange; } /** *

The IP address range, specified as an IPv4 CIDR block, used for the * management network interface.

The management network interface is * connected to a secure Amazon WorkSpaces management network. It is used for * interactive streaming of the WorkSpace desktop to Amazon WorkSpaces clients, and * to allow Amazon WorkSpaces to manage the WorkSpace.

*/ inline void SetDedicatedTenancyManagementCidrRange(const Aws::String& value) { m_dedicatedTenancyManagementCidrRange = value; } /** *

The IP address range, specified as an IPv4 CIDR block, used for the * management network interface.

The management network interface is * connected to a secure Amazon WorkSpaces management network. It is used for * interactive streaming of the WorkSpace desktop to Amazon WorkSpaces clients, and * to allow Amazon WorkSpaces to manage the WorkSpace.

*/ inline void SetDedicatedTenancyManagementCidrRange(Aws::String&& value) { m_dedicatedTenancyManagementCidrRange = std::move(value); } /** *

The IP address range, specified as an IPv4 CIDR block, used for the * management network interface.

The management network interface is * connected to a secure Amazon WorkSpaces management network. It is used for * interactive streaming of the WorkSpace desktop to Amazon WorkSpaces clients, and * to allow Amazon WorkSpaces to manage the WorkSpace.

*/ inline void SetDedicatedTenancyManagementCidrRange(const char* value) { m_dedicatedTenancyManagementCidrRange.assign(value); } /** *

The IP address range, specified as an IPv4 CIDR block, used for the * management network interface.

The management network interface is * connected to a secure Amazon WorkSpaces management network. It is used for * interactive streaming of the WorkSpace desktop to Amazon WorkSpaces clients, and * to allow Amazon WorkSpaces to manage the WorkSpace.

*/ inline DescribeAccountResult& WithDedicatedTenancyManagementCidrRange(const Aws::String& value) { SetDedicatedTenancyManagementCidrRange(value); return *this;} /** *

The IP address range, specified as an IPv4 CIDR block, used for the * management network interface.

The management network interface is * connected to a secure Amazon WorkSpaces management network. It is used for * interactive streaming of the WorkSpace desktop to Amazon WorkSpaces clients, and * to allow Amazon WorkSpaces to manage the WorkSpace.

*/ inline DescribeAccountResult& WithDedicatedTenancyManagementCidrRange(Aws::String&& value) { SetDedicatedTenancyManagementCidrRange(std::move(value)); return *this;} /** *

The IP address range, specified as an IPv4 CIDR block, used for the * management network interface.

The management network interface is * connected to a secure Amazon WorkSpaces management network. It is used for * interactive streaming of the WorkSpace desktop to Amazon WorkSpaces clients, and * to allow Amazon WorkSpaces to manage the WorkSpace.

*/ inline DescribeAccountResult& WithDedicatedTenancyManagementCidrRange(const char* value) { SetDedicatedTenancyManagementCidrRange(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeAccountResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeAccountResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeAccountResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: DedicatedTenancySupportResultEnum m_dedicatedTenancySupport; Aws::String m_dedicatedTenancyManagementCidrRange; Aws::String m_requestId; }; } // namespace Model } // namespace WorkSpaces } // namespace Aws