/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include VPC connection properties.See Also:
AWS
* API Reference
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