/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Deprecated. Describes whether a VPC is enabled for
* ClassicLink.See Also:
AWS
* API Reference
Indicates whether the VPC is enabled for ClassicLink.
*/ inline bool GetClassicLinkEnabled() const{ return m_classicLinkEnabled; } /** *Indicates whether the VPC is enabled for ClassicLink.
*/ inline bool ClassicLinkEnabledHasBeenSet() const { return m_classicLinkEnabledHasBeenSet; } /** *Indicates whether the VPC is enabled for ClassicLink.
*/ inline void SetClassicLinkEnabled(bool value) { m_classicLinkEnabledHasBeenSet = true; m_classicLinkEnabled = value; } /** *Indicates whether the VPC is enabled for ClassicLink.
*/ inline VpcClassicLink& WithClassicLinkEnabled(bool value) { SetClassicLinkEnabled(value); return *this;} /** *Any tags assigned to the VPC.
*/ inline const Aws::VectorAny tags assigned to the VPC.
*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *Any tags assigned to the VPC.
*/ inline void SetTags(const Aws::VectorAny tags assigned to the VPC.
*/ inline void SetTags(Aws::VectorAny tags assigned to the VPC.
*/ inline VpcClassicLink& WithTags(const Aws::VectorAny tags assigned to the VPC.
*/ inline VpcClassicLink& WithTags(Aws::VectorAny tags assigned to the VPC.
*/ inline VpcClassicLink& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; } /** *Any tags assigned to the VPC.
*/ inline VpcClassicLink& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } /** *The ID of the VPC.
*/ inline const Aws::String& GetVpcId() const{ return m_vpcId; } /** *The ID of the VPC.
*/ inline bool VpcIdHasBeenSet() const { return m_vpcIdHasBeenSet; } /** *The ID of the VPC.
*/ inline void SetVpcId(const Aws::String& value) { m_vpcIdHasBeenSet = true; m_vpcId = value; } /** *The ID of the VPC.
*/ inline void SetVpcId(Aws::String&& value) { m_vpcIdHasBeenSet = true; m_vpcId = std::move(value); } /** *The ID of the VPC.
*/ inline void SetVpcId(const char* value) { m_vpcIdHasBeenSet = true; m_vpcId.assign(value); } /** *The ID of the VPC.
*/ inline VpcClassicLink& WithVpcId(const Aws::String& value) { SetVpcId(value); return *this;} /** *The ID of the VPC.
*/ inline VpcClassicLink& WithVpcId(Aws::String&& value) { SetVpcId(std::move(value)); return *this;} /** *The ID of the VPC.
*/ inline VpcClassicLink& WithVpcId(const char* value) { SetVpcId(value); return *this;} private: bool m_classicLinkEnabled; bool m_classicLinkEnabledHasBeenSet = false; Aws::Vector