/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include VPC configuration associated with your simulation job.See
* Also:
AWS
* API Reference
A list of subnet IDs associated with the simulation job.
*/ inline const Aws::VectorA list of subnet IDs associated with the simulation job.
*/ inline bool SubnetsHasBeenSet() const { return m_subnetsHasBeenSet; } /** *A list of subnet IDs associated with the simulation job.
*/ inline void SetSubnets(const Aws::VectorA list of subnet IDs associated with the simulation job.
*/ inline void SetSubnets(Aws::VectorA list of subnet IDs associated with the simulation job.
*/ inline VPCConfigResponse& WithSubnets(const Aws::VectorA list of subnet IDs associated with the simulation job.
*/ inline VPCConfigResponse& WithSubnets(Aws::VectorA list of subnet IDs associated with the simulation job.
*/ inline VPCConfigResponse& AddSubnets(const Aws::String& value) { m_subnetsHasBeenSet = true; m_subnets.push_back(value); return *this; } /** *A list of subnet IDs associated with the simulation job.
*/ inline VPCConfigResponse& AddSubnets(Aws::String&& value) { m_subnetsHasBeenSet = true; m_subnets.push_back(std::move(value)); return *this; } /** *A list of subnet IDs associated with the simulation job.
*/ inline VPCConfigResponse& AddSubnets(const char* value) { m_subnetsHasBeenSet = true; m_subnets.push_back(value); return *this; } /** *A list of security group IDs associated with the simulation job.
*/ inline const Aws::VectorA list of security group IDs associated with the simulation job.
*/ inline bool SecurityGroupsHasBeenSet() const { return m_securityGroupsHasBeenSet; } /** *A list of security group IDs associated with the simulation job.
*/ inline void SetSecurityGroups(const Aws::VectorA list of security group IDs associated with the simulation job.
*/ inline void SetSecurityGroups(Aws::VectorA list of security group IDs associated with the simulation job.
*/ inline VPCConfigResponse& WithSecurityGroups(const Aws::VectorA list of security group IDs associated with the simulation job.
*/ inline VPCConfigResponse& WithSecurityGroups(Aws::VectorA list of security group IDs associated with the simulation job.
*/ inline VPCConfigResponse& AddSecurityGroups(const Aws::String& value) { m_securityGroupsHasBeenSet = true; m_securityGroups.push_back(value); return *this; } /** *A list of security group IDs associated with the simulation job.
*/ inline VPCConfigResponse& AddSecurityGroups(Aws::String&& value) { m_securityGroupsHasBeenSet = true; m_securityGroups.push_back(std::move(value)); return *this; } /** *A list of security group IDs associated with the simulation job.
*/ inline VPCConfigResponse& AddSecurityGroups(const char* value) { m_securityGroupsHasBeenSet = true; m_securityGroups.push_back(value); return *this; } /** *The VPC ID associated with your simulation job.
*/ inline const Aws::String& GetVpcId() const{ return m_vpcId; } /** *The VPC ID associated with your simulation job.
*/ inline bool VpcIdHasBeenSet() const { return m_vpcIdHasBeenSet; } /** *The VPC ID associated with your simulation job.
*/ inline void SetVpcId(const Aws::String& value) { m_vpcIdHasBeenSet = true; m_vpcId = value; } /** *The VPC ID associated with your simulation job.
*/ inline void SetVpcId(Aws::String&& value) { m_vpcIdHasBeenSet = true; m_vpcId = std::move(value); } /** *The VPC ID associated with your simulation job.
*/ inline void SetVpcId(const char* value) { m_vpcIdHasBeenSet = true; m_vpcId.assign(value); } /** *The VPC ID associated with your simulation job.
*/ inline VPCConfigResponse& WithVpcId(const Aws::String& value) { SetVpcId(value); return *this;} /** *The VPC ID associated with your simulation job.
*/ inline VPCConfigResponse& WithVpcId(Aws::String&& value) { SetVpcId(std::move(value)); return *this;} /** *The VPC ID associated with your simulation job.
*/ inline VPCConfigResponse& WithVpcId(const char* value) { SetVpcId(value); return *this;} /** *A boolean indicating if a public IP was assigned.
*/ inline bool GetAssignPublicIp() const{ return m_assignPublicIp; } /** *A boolean indicating if a public IP was assigned.
*/ inline bool AssignPublicIpHasBeenSet() const { return m_assignPublicIpHasBeenSet; } /** *A boolean indicating if a public IP was assigned.
*/ inline void SetAssignPublicIp(bool value) { m_assignPublicIpHasBeenSet = true; m_assignPublicIp = value; } /** *A boolean indicating if a public IP was assigned.
*/ inline VPCConfigResponse& WithAssignPublicIp(bool value) { SetAssignPublicIp(value); return *this;} private: Aws::Vector