/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the parameters of a VPC used by the application.See
* Also:
AWS
* API Reference
The ID of the VPC configuration.
*/ inline const Aws::String& GetVpcConfigurationId() const{ return m_vpcConfigurationId; } /** *The ID of the VPC configuration.
*/ inline bool VpcConfigurationIdHasBeenSet() const { return m_vpcConfigurationIdHasBeenSet; } /** *The ID of the VPC configuration.
*/ inline void SetVpcConfigurationId(const Aws::String& value) { m_vpcConfigurationIdHasBeenSet = true; m_vpcConfigurationId = value; } /** *The ID of the VPC configuration.
*/ inline void SetVpcConfigurationId(Aws::String&& value) { m_vpcConfigurationIdHasBeenSet = true; m_vpcConfigurationId = std::move(value); } /** *The ID of the VPC configuration.
*/ inline void SetVpcConfigurationId(const char* value) { m_vpcConfigurationIdHasBeenSet = true; m_vpcConfigurationId.assign(value); } /** *The ID of the VPC configuration.
*/ inline VpcConfigurationDescription& WithVpcConfigurationId(const Aws::String& value) { SetVpcConfigurationId(value); return *this;} /** *The ID of the VPC configuration.
*/ inline VpcConfigurationDescription& WithVpcConfigurationId(Aws::String&& value) { SetVpcConfigurationId(std::move(value)); return *this;} /** *The ID of the VPC configuration.
*/ inline VpcConfigurationDescription& WithVpcConfigurationId(const char* value) { SetVpcConfigurationId(value); return *this;} /** *The ID of the associated VPC.
*/ inline const Aws::String& GetVpcId() const{ return m_vpcId; } /** *The ID of the associated VPC.
*/ inline bool VpcIdHasBeenSet() const { return m_vpcIdHasBeenSet; } /** *The ID of the associated VPC.
*/ inline void SetVpcId(const Aws::String& value) { m_vpcIdHasBeenSet = true; m_vpcId = value; } /** *The ID of the associated VPC.
*/ inline void SetVpcId(Aws::String&& value) { m_vpcIdHasBeenSet = true; m_vpcId = std::move(value); } /** *The ID of the associated VPC.
*/ inline void SetVpcId(const char* value) { m_vpcIdHasBeenSet = true; m_vpcId.assign(value); } /** *The ID of the associated VPC.
*/ inline VpcConfigurationDescription& WithVpcId(const Aws::String& value) { SetVpcId(value); return *this;} /** *The ID of the associated VPC.
*/ inline VpcConfigurationDescription& WithVpcId(Aws::String&& value) { SetVpcId(std::move(value)); return *this;} /** *The ID of the associated VPC.
*/ inline VpcConfigurationDescription& WithVpcId(const char* value) { SetVpcId(value); return *this;} /** *The array of Subnet * IDs used by the VPC configuration.
*/ inline const Aws::VectorThe array of Subnet * IDs used by the VPC configuration.
*/ inline bool SubnetIdsHasBeenSet() const { return m_subnetIdsHasBeenSet; } /** *The array of Subnet * IDs used by the VPC configuration.
*/ inline void SetSubnetIds(const Aws::VectorThe array of Subnet * IDs used by the VPC configuration.
*/ inline void SetSubnetIds(Aws::VectorThe array of Subnet * IDs used by the VPC configuration.
*/ inline VpcConfigurationDescription& WithSubnetIds(const Aws::VectorThe array of Subnet * IDs used by the VPC configuration.
*/ inline VpcConfigurationDescription& WithSubnetIds(Aws::VectorThe array of Subnet * IDs used by the VPC configuration.
*/ inline VpcConfigurationDescription& AddSubnetIds(const Aws::String& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; } /** *The array of Subnet * IDs used by the VPC configuration.
*/ inline VpcConfigurationDescription& AddSubnetIds(Aws::String&& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(std::move(value)); return *this; } /** *The array of Subnet * IDs used by the VPC configuration.
*/ inline VpcConfigurationDescription& AddSubnetIds(const char* value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; } /** *The array of SecurityGroup * IDs used by the VPC configuration.
*/ inline const Aws::VectorThe array of SecurityGroup * IDs used by the VPC configuration.
*/ inline bool SecurityGroupIdsHasBeenSet() const { return m_securityGroupIdsHasBeenSet; } /** *The array of SecurityGroup * IDs used by the VPC configuration.
*/ inline void SetSecurityGroupIds(const Aws::VectorThe array of SecurityGroup * IDs used by the VPC configuration.
*/ inline void SetSecurityGroupIds(Aws::VectorThe array of SecurityGroup * IDs used by the VPC configuration.
*/ inline VpcConfigurationDescription& WithSecurityGroupIds(const Aws::VectorThe array of SecurityGroup * IDs used by the VPC configuration.
*/ inline VpcConfigurationDescription& WithSecurityGroupIds(Aws::VectorThe array of SecurityGroup * IDs used by the VPC configuration.
*/ inline VpcConfigurationDescription& AddSecurityGroupIds(const Aws::String& value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds.push_back(value); return *this; } /** *The array of SecurityGroup * IDs used by the VPC configuration.
*/ inline VpcConfigurationDescription& AddSecurityGroupIds(Aws::String&& value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds.push_back(std::move(value)); return *this; } /** *The array of SecurityGroup * IDs used by the VPC configuration.
*/ inline VpcConfigurationDescription& AddSecurityGroupIds(const char* value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds.push_back(value); return *this; } private: Aws::String m_vpcConfigurationId; bool m_vpcConfigurationIdHasBeenSet = false; Aws::String m_vpcId; bool m_vpcIdHasBeenSet = false; Aws::Vector