/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace QuickSight { namespace Model { /** *

VPC connection properties.

See Also:

AWS * API Reference

*/ class VpcConnectionProperties { public: AWS_QUICKSIGHT_API VpcConnectionProperties(); AWS_QUICKSIGHT_API VpcConnectionProperties(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API VpcConnectionProperties& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The Amazon Resource Name (ARN) for the VPC connection.

*/ inline const Aws::String& GetVpcConnectionArn() const{ return m_vpcConnectionArn; } /** *

The Amazon Resource Name (ARN) for the VPC connection.

*/ inline bool VpcConnectionArnHasBeenSet() const { return m_vpcConnectionArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) for the VPC connection.

*/ inline void SetVpcConnectionArn(const Aws::String& value) { m_vpcConnectionArnHasBeenSet = true; m_vpcConnectionArn = value; } /** *

The Amazon Resource Name (ARN) for the VPC connection.

*/ inline void SetVpcConnectionArn(Aws::String&& value) { m_vpcConnectionArnHasBeenSet = true; m_vpcConnectionArn = std::move(value); } /** *

The Amazon Resource Name (ARN) for the VPC connection.

*/ inline void SetVpcConnectionArn(const char* value) { m_vpcConnectionArnHasBeenSet = true; m_vpcConnectionArn.assign(value); } /** *

The Amazon Resource Name (ARN) for the VPC connection.

*/ inline VpcConnectionProperties& WithVpcConnectionArn(const Aws::String& value) { SetVpcConnectionArn(value); return *this;} /** *

The Amazon Resource Name (ARN) for the VPC connection.

*/ inline VpcConnectionProperties& WithVpcConnectionArn(Aws::String&& value) { SetVpcConnectionArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) for the VPC connection.

*/ inline VpcConnectionProperties& WithVpcConnectionArn(const char* value) { SetVpcConnectionArn(value); return *this;} private: Aws::String m_vpcConnectionArn; bool m_vpcConnectionArnHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws