/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace AppRunner { namespace Model { /** */ class DescribeVpcConnectorRequest : public AppRunnerRequest { public: AWS_APPRUNNER_API DescribeVpcConnectorRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DescribeVpcConnector"; } AWS_APPRUNNER_API Aws::String SerializePayload() const override; AWS_APPRUNNER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The Amazon Resource Name (ARN) of the App Runner VPC connector that you want * a description for.

The ARN must be a full VPC connector ARN.

*/ inline const Aws::String& GetVpcConnectorArn() const{ return m_vpcConnectorArn; } /** *

The Amazon Resource Name (ARN) of the App Runner VPC connector that you want * a description for.

The ARN must be a full VPC connector ARN.

*/ inline bool VpcConnectorArnHasBeenSet() const { return m_vpcConnectorArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the App Runner VPC connector that you want * a description for.

The ARN must be a full VPC connector ARN.

*/ inline void SetVpcConnectorArn(const Aws::String& value) { m_vpcConnectorArnHasBeenSet = true; m_vpcConnectorArn = value; } /** *

The Amazon Resource Name (ARN) of the App Runner VPC connector that you want * a description for.

The ARN must be a full VPC connector ARN.

*/ inline void SetVpcConnectorArn(Aws::String&& value) { m_vpcConnectorArnHasBeenSet = true; m_vpcConnectorArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the App Runner VPC connector that you want * a description for.

The ARN must be a full VPC connector ARN.

*/ inline void SetVpcConnectorArn(const char* value) { m_vpcConnectorArnHasBeenSet = true; m_vpcConnectorArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the App Runner VPC connector that you want * a description for.

The ARN must be a full VPC connector ARN.

*/ inline DescribeVpcConnectorRequest& WithVpcConnectorArn(const Aws::String& value) { SetVpcConnectorArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the App Runner VPC connector that you want * a description for.

The ARN must be a full VPC connector ARN.

*/ inline DescribeVpcConnectorRequest& WithVpcConnectorArn(Aws::String&& value) { SetVpcConnectorArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the App Runner VPC connector that you want * a description for.

The ARN must be a full VPC connector ARN.

*/ inline DescribeVpcConnectorRequest& WithVpcConnectorArn(const char* value) { SetVpcConnectorArn(value); return *this;} private: Aws::String m_vpcConnectorArn; bool m_vpcConnectorArnHasBeenSet = false; }; } // namespace Model } // namespace AppRunner } // namespace Aws