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

An object that contains information about your VPC endpoint * configuration.

*/ inline const VPCEConfiguration& GetVpceConfiguration() const{ return m_vpceConfiguration; } /** *

An object that contains information about your VPC endpoint * configuration.

*/ inline void SetVpceConfiguration(const VPCEConfiguration& value) { m_vpceConfiguration = value; } /** *

An object that contains information about your VPC endpoint * configuration.

*/ inline void SetVpceConfiguration(VPCEConfiguration&& value) { m_vpceConfiguration = std::move(value); } /** *

An object that contains information about your VPC endpoint * configuration.

*/ inline UpdateVPCEConfigurationResult& WithVpceConfiguration(const VPCEConfiguration& value) { SetVpceConfiguration(value); return *this;} /** *

An object that contains information about your VPC endpoint * configuration.

*/ inline UpdateVPCEConfigurationResult& WithVpceConfiguration(VPCEConfiguration&& value) { SetVpceConfiguration(std::move(value)); return *this;} private: VPCEConfiguration m_vpceConfiguration; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws