/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the output of CreateVpcEndpoint.See Also:
AWS
* API Reference
Information about the endpoint.
*/ inline const VpcEndpoint& GetVpcEndpoint() const{ return m_vpcEndpoint; } /** *Information about the endpoint.
*/ inline void SetVpcEndpoint(const VpcEndpoint& value) { m_vpcEndpoint = value; } /** *Information about the endpoint.
*/ inline void SetVpcEndpoint(VpcEndpoint&& value) { m_vpcEndpoint = std::move(value); } /** *Information about the endpoint.
*/ inline CreateVpcEndpointResponse& WithVpcEndpoint(const VpcEndpoint& value) { SetVpcEndpoint(value); return *this;} /** *Information about the endpoint.
*/ inline CreateVpcEndpointResponse& WithVpcEndpoint(VpcEndpoint&& value) { SetVpcEndpoint(std::move(value)); return *this;} /** *Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request.
*/ inline const Aws::String& GetClientToken() const{ return m_clientToken; } /** *Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request.
*/ inline void SetClientToken(const Aws::String& value) { m_clientToken = value; } /** *Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request.
*/ inline void SetClientToken(Aws::String&& value) { m_clientToken = std::move(value); } /** *Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request.
*/ inline void SetClientToken(const char* value) { m_clientToken.assign(value); } /** *Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request.
*/ inline CreateVpcEndpointResponse& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;} /** *Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request.
*/ inline CreateVpcEndpointResponse& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;} /** *Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request.
*/ inline CreateVpcEndpointResponse& WithClientToken(const char* value) { SetClientToken(value); return *this;} inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline CreateVpcEndpointResponse& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline CreateVpcEndpointResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: VpcEndpoint m_vpcEndpoint; Aws::String m_clientToken; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace EC2 } // namespace Aws