/** * 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 AppRunner { namespace Model { class CreateVpcIngressConnectionResult { public: AWS_APPRUNNER_API CreateVpcIngressConnectionResult(); AWS_APPRUNNER_API CreateVpcIngressConnectionResult(const Aws::AmazonWebServiceResult& result); AWS_APPRUNNER_API CreateVpcIngressConnectionResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A description of the App Runner VPC Ingress Connection resource that's * created by this request.

*/ inline const VpcIngressConnection& GetVpcIngressConnection() const{ return m_vpcIngressConnection; } /** *

A description of the App Runner VPC Ingress Connection resource that's * created by this request.

*/ inline void SetVpcIngressConnection(const VpcIngressConnection& value) { m_vpcIngressConnection = value; } /** *

A description of the App Runner VPC Ingress Connection resource that's * created by this request.

*/ inline void SetVpcIngressConnection(VpcIngressConnection&& value) { m_vpcIngressConnection = std::move(value); } /** *

A description of the App Runner VPC Ingress Connection resource that's * created by this request.

*/ inline CreateVpcIngressConnectionResult& WithVpcIngressConnection(const VpcIngressConnection& value) { SetVpcIngressConnection(value); return *this;} /** *

A description of the App Runner VPC Ingress Connection resource that's * created by this request.

*/ inline CreateVpcIngressConnectionResult& WithVpcIngressConnection(VpcIngressConnection&& value) { SetVpcIngressConnection(std::move(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 CreateVpcIngressConnectionResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateVpcIngressConnectionResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateVpcIngressConnectionResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: VpcIngressConnection m_vpcIngressConnection; Aws::String m_requestId; }; } // namespace Model } // namespace AppRunner } // namespace Aws