73 lines
2.0 KiB
C
73 lines
2.0 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/devicefarm/DeviceFarm_EXPORTS.h>
|
|||
|
|
#include <aws/devicefarm/model/VPCEConfiguration.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
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<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
UpdateVPCEConfigurationResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An object that contains information about your VPC endpoint
|
|||
|
|
* configuration.</p>
|
|||
|
|
*/
|
|||
|
|
inline const VPCEConfiguration& GetVpceConfiguration() const{ return m_vpceConfiguration; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An object that contains information about your VPC endpoint
|
|||
|
|
* configuration.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetVpceConfiguration(const VPCEConfiguration& value) { m_vpceConfiguration = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An object that contains information about your VPC endpoint
|
|||
|
|
* configuration.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetVpceConfiguration(VPCEConfiguration&& value) { m_vpceConfiguration = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An object that contains information about your VPC endpoint
|
|||
|
|
* configuration.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateVPCEConfigurationResult& WithVpceConfiguration(const VPCEConfiguration& value) { SetVpceConfiguration(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An object that contains information about your VPC endpoint
|
|||
|
|
* configuration.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateVPCEConfigurationResult& WithVpceConfiguration(VPCEConfiguration&& value) { SetVpceConfiguration(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
VPCEConfiguration m_vpceConfiguration;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace DeviceFarm
|
|||
|
|
} // namespace Aws
|