/** * 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 SecurityHub { namespace Model { /** *

Provides details about the routes in the route table.

See * Also:

AWS * API Reference

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

The ID of the carrier gateway.

*/ inline const Aws::String& GetCarrierGatewayId() const{ return m_carrierGatewayId; } /** *

The ID of the carrier gateway.

*/ inline bool CarrierGatewayIdHasBeenSet() const { return m_carrierGatewayIdHasBeenSet; } /** *

The ID of the carrier gateway.

*/ inline void SetCarrierGatewayId(const Aws::String& value) { m_carrierGatewayIdHasBeenSet = true; m_carrierGatewayId = value; } /** *

The ID of the carrier gateway.

*/ inline void SetCarrierGatewayId(Aws::String&& value) { m_carrierGatewayIdHasBeenSet = true; m_carrierGatewayId = std::move(value); } /** *

The ID of the carrier gateway.

*/ inline void SetCarrierGatewayId(const char* value) { m_carrierGatewayIdHasBeenSet = true; m_carrierGatewayId.assign(value); } /** *

The ID of the carrier gateway.

*/ inline RouteSetDetails& WithCarrierGatewayId(const Aws::String& value) { SetCarrierGatewayId(value); return *this;} /** *

The ID of the carrier gateway.

*/ inline RouteSetDetails& WithCarrierGatewayId(Aws::String&& value) { SetCarrierGatewayId(std::move(value)); return *this;} /** *

The ID of the carrier gateway.

*/ inline RouteSetDetails& WithCarrierGatewayId(const char* value) { SetCarrierGatewayId(value); return *this;} /** *

The Amazon Resource Name (ARN) of the core network.

*/ inline const Aws::String& GetCoreNetworkArn() const{ return m_coreNetworkArn; } /** *

The Amazon Resource Name (ARN) of the core network.

*/ inline bool CoreNetworkArnHasBeenSet() const { return m_coreNetworkArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the core network.

*/ inline void SetCoreNetworkArn(const Aws::String& value) { m_coreNetworkArnHasBeenSet = true; m_coreNetworkArn = value; } /** *

The Amazon Resource Name (ARN) of the core network.

*/ inline void SetCoreNetworkArn(Aws::String&& value) { m_coreNetworkArnHasBeenSet = true; m_coreNetworkArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the core network.

*/ inline void SetCoreNetworkArn(const char* value) { m_coreNetworkArnHasBeenSet = true; m_coreNetworkArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the core network.

*/ inline RouteSetDetails& WithCoreNetworkArn(const Aws::String& value) { SetCoreNetworkArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the core network.

*/ inline RouteSetDetails& WithCoreNetworkArn(Aws::String&& value) { SetCoreNetworkArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the core network.

*/ inline RouteSetDetails& WithCoreNetworkArn(const char* value) { SetCoreNetworkArn(value); return *this;} /** *

The IPv4 CIDR block used for the destination match.

*/ inline const Aws::String& GetDestinationCidrBlock() const{ return m_destinationCidrBlock; } /** *

The IPv4 CIDR block used for the destination match.

*/ inline bool DestinationCidrBlockHasBeenSet() const { return m_destinationCidrBlockHasBeenSet; } /** *

The IPv4 CIDR block used for the destination match.

*/ inline void SetDestinationCidrBlock(const Aws::String& value) { m_destinationCidrBlockHasBeenSet = true; m_destinationCidrBlock = value; } /** *

The IPv4 CIDR block used for the destination match.

*/ inline void SetDestinationCidrBlock(Aws::String&& value) { m_destinationCidrBlockHasBeenSet = true; m_destinationCidrBlock = std::move(value); } /** *

The IPv4 CIDR block used for the destination match.

*/ inline void SetDestinationCidrBlock(const char* value) { m_destinationCidrBlockHasBeenSet = true; m_destinationCidrBlock.assign(value); } /** *

The IPv4 CIDR block used for the destination match.

*/ inline RouteSetDetails& WithDestinationCidrBlock(const Aws::String& value) { SetDestinationCidrBlock(value); return *this;} /** *

The IPv4 CIDR block used for the destination match.

*/ inline RouteSetDetails& WithDestinationCidrBlock(Aws::String&& value) { SetDestinationCidrBlock(std::move(value)); return *this;} /** *

The IPv4 CIDR block used for the destination match.

*/ inline RouteSetDetails& WithDestinationCidrBlock(const char* value) { SetDestinationCidrBlock(value); return *this;} /** *

The IPv6 CIDR block used for the destination match.

*/ inline const Aws::String& GetDestinationIpv6CidrBlock() const{ return m_destinationIpv6CidrBlock; } /** *

The IPv6 CIDR block used for the destination match.

*/ inline bool DestinationIpv6CidrBlockHasBeenSet() const { return m_destinationIpv6CidrBlockHasBeenSet; } /** *

The IPv6 CIDR block used for the destination match.

*/ inline void SetDestinationIpv6CidrBlock(const Aws::String& value) { m_destinationIpv6CidrBlockHasBeenSet = true; m_destinationIpv6CidrBlock = value; } /** *

The IPv6 CIDR block used for the destination match.

*/ inline void SetDestinationIpv6CidrBlock(Aws::String&& value) { m_destinationIpv6CidrBlockHasBeenSet = true; m_destinationIpv6CidrBlock = std::move(value); } /** *

The IPv6 CIDR block used for the destination match.

*/ inline void SetDestinationIpv6CidrBlock(const char* value) { m_destinationIpv6CidrBlockHasBeenSet = true; m_destinationIpv6CidrBlock.assign(value); } /** *

The IPv6 CIDR block used for the destination match.

*/ inline RouteSetDetails& WithDestinationIpv6CidrBlock(const Aws::String& value) { SetDestinationIpv6CidrBlock(value); return *this;} /** *

The IPv6 CIDR block used for the destination match.

*/ inline RouteSetDetails& WithDestinationIpv6CidrBlock(Aws::String&& value) { SetDestinationIpv6CidrBlock(std::move(value)); return *this;} /** *

The IPv6 CIDR block used for the destination match.

*/ inline RouteSetDetails& WithDestinationIpv6CidrBlock(const char* value) { SetDestinationIpv6CidrBlock(value); return *this;} /** *

The prefix of the destination Amazon Web Service.

*/ inline const Aws::String& GetDestinationPrefixListId() const{ return m_destinationPrefixListId; } /** *

The prefix of the destination Amazon Web Service.

*/ inline bool DestinationPrefixListIdHasBeenSet() const { return m_destinationPrefixListIdHasBeenSet; } /** *

The prefix of the destination Amazon Web Service.

*/ inline void SetDestinationPrefixListId(const Aws::String& value) { m_destinationPrefixListIdHasBeenSet = true; m_destinationPrefixListId = value; } /** *

The prefix of the destination Amazon Web Service.

*/ inline void SetDestinationPrefixListId(Aws::String&& value) { m_destinationPrefixListIdHasBeenSet = true; m_destinationPrefixListId = std::move(value); } /** *

The prefix of the destination Amazon Web Service.

*/ inline void SetDestinationPrefixListId(const char* value) { m_destinationPrefixListIdHasBeenSet = true; m_destinationPrefixListId.assign(value); } /** *

The prefix of the destination Amazon Web Service.

*/ inline RouteSetDetails& WithDestinationPrefixListId(const Aws::String& value) { SetDestinationPrefixListId(value); return *this;} /** *

The prefix of the destination Amazon Web Service.

*/ inline RouteSetDetails& WithDestinationPrefixListId(Aws::String&& value) { SetDestinationPrefixListId(std::move(value)); return *this;} /** *

The prefix of the destination Amazon Web Service.

*/ inline RouteSetDetails& WithDestinationPrefixListId(const char* value) { SetDestinationPrefixListId(value); return *this;} /** *

The ID of the egress-only internet gateway.

*/ inline const Aws::String& GetEgressOnlyInternetGatewayId() const{ return m_egressOnlyInternetGatewayId; } /** *

The ID of the egress-only internet gateway.

*/ inline bool EgressOnlyInternetGatewayIdHasBeenSet() const { return m_egressOnlyInternetGatewayIdHasBeenSet; } /** *

The ID of the egress-only internet gateway.

*/ inline void SetEgressOnlyInternetGatewayId(const Aws::String& value) { m_egressOnlyInternetGatewayIdHasBeenSet = true; m_egressOnlyInternetGatewayId = value; } /** *

The ID of the egress-only internet gateway.

*/ inline void SetEgressOnlyInternetGatewayId(Aws::String&& value) { m_egressOnlyInternetGatewayIdHasBeenSet = true; m_egressOnlyInternetGatewayId = std::move(value); } /** *

The ID of the egress-only internet gateway.

*/ inline void SetEgressOnlyInternetGatewayId(const char* value) { m_egressOnlyInternetGatewayIdHasBeenSet = true; m_egressOnlyInternetGatewayId.assign(value); } /** *

The ID of the egress-only internet gateway.

*/ inline RouteSetDetails& WithEgressOnlyInternetGatewayId(const Aws::String& value) { SetEgressOnlyInternetGatewayId(value); return *this;} /** *

The ID of the egress-only internet gateway.

*/ inline RouteSetDetails& WithEgressOnlyInternetGatewayId(Aws::String&& value) { SetEgressOnlyInternetGatewayId(std::move(value)); return *this;} /** *

The ID of the egress-only internet gateway.

*/ inline RouteSetDetails& WithEgressOnlyInternetGatewayId(const char* value) { SetEgressOnlyInternetGatewayId(value); return *this;} /** *

The ID of a gateway attached to your VPC.

*/ inline const Aws::String& GetGatewayId() const{ return m_gatewayId; } /** *

The ID of a gateway attached to your VPC.

*/ inline bool GatewayIdHasBeenSet() const { return m_gatewayIdHasBeenSet; } /** *

The ID of a gateway attached to your VPC.

*/ inline void SetGatewayId(const Aws::String& value) { m_gatewayIdHasBeenSet = true; m_gatewayId = value; } /** *

The ID of a gateway attached to your VPC.

*/ inline void SetGatewayId(Aws::String&& value) { m_gatewayIdHasBeenSet = true; m_gatewayId = std::move(value); } /** *

The ID of a gateway attached to your VPC.

*/ inline void SetGatewayId(const char* value) { m_gatewayIdHasBeenSet = true; m_gatewayId.assign(value); } /** *

The ID of a gateway attached to your VPC.

*/ inline RouteSetDetails& WithGatewayId(const Aws::String& value) { SetGatewayId(value); return *this;} /** *

The ID of a gateway attached to your VPC.

*/ inline RouteSetDetails& WithGatewayId(Aws::String&& value) { SetGatewayId(std::move(value)); return *this;} /** *

The ID of a gateway attached to your VPC.

*/ inline RouteSetDetails& WithGatewayId(const char* value) { SetGatewayId(value); return *this;} /** *

The ID of a NAT instance in your VPC.

*/ inline const Aws::String& GetInstanceId() const{ return m_instanceId; } /** *

The ID of a NAT instance in your VPC.

*/ inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; } /** *

The ID of a NAT instance in your VPC.

*/ inline void SetInstanceId(const Aws::String& value) { m_instanceIdHasBeenSet = true; m_instanceId = value; } /** *

The ID of a NAT instance in your VPC.

*/ inline void SetInstanceId(Aws::String&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::move(value); } /** *

The ID of a NAT instance in your VPC.

*/ inline void SetInstanceId(const char* value) { m_instanceIdHasBeenSet = true; m_instanceId.assign(value); } /** *

The ID of a NAT instance in your VPC.

*/ inline RouteSetDetails& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;} /** *

The ID of a NAT instance in your VPC.

*/ inline RouteSetDetails& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;} /** *

The ID of a NAT instance in your VPC.

*/ inline RouteSetDetails& WithInstanceId(const char* value) { SetInstanceId(value); return *this;} /** *

The ID of the Amazon Web Services account that owns the instance.

*/ inline const Aws::String& GetInstanceOwnerId() const{ return m_instanceOwnerId; } /** *

The ID of the Amazon Web Services account that owns the instance.

*/ inline bool InstanceOwnerIdHasBeenSet() const { return m_instanceOwnerIdHasBeenSet; } /** *

The ID of the Amazon Web Services account that owns the instance.

*/ inline void SetInstanceOwnerId(const Aws::String& value) { m_instanceOwnerIdHasBeenSet = true; m_instanceOwnerId = value; } /** *

The ID of the Amazon Web Services account that owns the instance.

*/ inline void SetInstanceOwnerId(Aws::String&& value) { m_instanceOwnerIdHasBeenSet = true; m_instanceOwnerId = std::move(value); } /** *

The ID of the Amazon Web Services account that owns the instance.

*/ inline void SetInstanceOwnerId(const char* value) { m_instanceOwnerIdHasBeenSet = true; m_instanceOwnerId.assign(value); } /** *

The ID of the Amazon Web Services account that owns the instance.

*/ inline RouteSetDetails& WithInstanceOwnerId(const Aws::String& value) { SetInstanceOwnerId(value); return *this;} /** *

The ID of the Amazon Web Services account that owns the instance.

*/ inline RouteSetDetails& WithInstanceOwnerId(Aws::String&& value) { SetInstanceOwnerId(std::move(value)); return *this;} /** *

The ID of the Amazon Web Services account that owns the instance.

*/ inline RouteSetDetails& WithInstanceOwnerId(const char* value) { SetInstanceOwnerId(value); return *this;} /** *

The ID of the local gateway.

*/ inline const Aws::String& GetLocalGatewayId() const{ return m_localGatewayId; } /** *

The ID of the local gateway.

*/ inline bool LocalGatewayIdHasBeenSet() const { return m_localGatewayIdHasBeenSet; } /** *

The ID of the local gateway.

*/ inline void SetLocalGatewayId(const Aws::String& value) { m_localGatewayIdHasBeenSet = true; m_localGatewayId = value; } /** *

The ID of the local gateway.

*/ inline void SetLocalGatewayId(Aws::String&& value) { m_localGatewayIdHasBeenSet = true; m_localGatewayId = std::move(value); } /** *

The ID of the local gateway.

*/ inline void SetLocalGatewayId(const char* value) { m_localGatewayIdHasBeenSet = true; m_localGatewayId.assign(value); } /** *

The ID of the local gateway.

*/ inline RouteSetDetails& WithLocalGatewayId(const Aws::String& value) { SetLocalGatewayId(value); return *this;} /** *

The ID of the local gateway.

*/ inline RouteSetDetails& WithLocalGatewayId(Aws::String&& value) { SetLocalGatewayId(std::move(value)); return *this;} /** *

The ID of the local gateway.

*/ inline RouteSetDetails& WithLocalGatewayId(const char* value) { SetLocalGatewayId(value); return *this;} /** *

The ID of a NAT gateway.

*/ inline const Aws::String& GetNatGatewayId() const{ return m_natGatewayId; } /** *

The ID of a NAT gateway.

*/ inline bool NatGatewayIdHasBeenSet() const { return m_natGatewayIdHasBeenSet; } /** *

The ID of a NAT gateway.

*/ inline void SetNatGatewayId(const Aws::String& value) { m_natGatewayIdHasBeenSet = true; m_natGatewayId = value; } /** *

The ID of a NAT gateway.

*/ inline void SetNatGatewayId(Aws::String&& value) { m_natGatewayIdHasBeenSet = true; m_natGatewayId = std::move(value); } /** *

The ID of a NAT gateway.

*/ inline void SetNatGatewayId(const char* value) { m_natGatewayIdHasBeenSet = true; m_natGatewayId.assign(value); } /** *

The ID of a NAT gateway.

*/ inline RouteSetDetails& WithNatGatewayId(const Aws::String& value) { SetNatGatewayId(value); return *this;} /** *

The ID of a NAT gateway.

*/ inline RouteSetDetails& WithNatGatewayId(Aws::String&& value) { SetNatGatewayId(std::move(value)); return *this;} /** *

The ID of a NAT gateway.

*/ inline RouteSetDetails& WithNatGatewayId(const char* value) { SetNatGatewayId(value); return *this;} /** *

The ID of the network interface.

*/ inline const Aws::String& GetNetworkInterfaceId() const{ return m_networkInterfaceId; } /** *

The ID of the network interface.

*/ inline bool NetworkInterfaceIdHasBeenSet() const { return m_networkInterfaceIdHasBeenSet; } /** *

The ID of the network interface.

*/ inline void SetNetworkInterfaceId(const Aws::String& value) { m_networkInterfaceIdHasBeenSet = true; m_networkInterfaceId = value; } /** *

The ID of the network interface.

*/ inline void SetNetworkInterfaceId(Aws::String&& value) { m_networkInterfaceIdHasBeenSet = true; m_networkInterfaceId = std::move(value); } /** *

The ID of the network interface.

*/ inline void SetNetworkInterfaceId(const char* value) { m_networkInterfaceIdHasBeenSet = true; m_networkInterfaceId.assign(value); } /** *

The ID of the network interface.

*/ inline RouteSetDetails& WithNetworkInterfaceId(const Aws::String& value) { SetNetworkInterfaceId(value); return *this;} /** *

The ID of the network interface.

*/ inline RouteSetDetails& WithNetworkInterfaceId(Aws::String&& value) { SetNetworkInterfaceId(std::move(value)); return *this;} /** *

The ID of the network interface.

*/ inline RouteSetDetails& WithNetworkInterfaceId(const char* value) { SetNetworkInterfaceId(value); return *this;} /** *

Describes how the route was created.

*/ inline const Aws::String& GetOrigin() const{ return m_origin; } /** *

Describes how the route was created.

*/ inline bool OriginHasBeenSet() const { return m_originHasBeenSet; } /** *

Describes how the route was created.

*/ inline void SetOrigin(const Aws::String& value) { m_originHasBeenSet = true; m_origin = value; } /** *

Describes how the route was created.

*/ inline void SetOrigin(Aws::String&& value) { m_originHasBeenSet = true; m_origin = std::move(value); } /** *

Describes how the route was created.

*/ inline void SetOrigin(const char* value) { m_originHasBeenSet = true; m_origin.assign(value); } /** *

Describes how the route was created.

*/ inline RouteSetDetails& WithOrigin(const Aws::String& value) { SetOrigin(value); return *this;} /** *

Describes how the route was created.

*/ inline RouteSetDetails& WithOrigin(Aws::String&& value) { SetOrigin(std::move(value)); return *this;} /** *

Describes how the route was created.

*/ inline RouteSetDetails& WithOrigin(const char* value) { SetOrigin(value); return *this;} /** *

The state of the route.

*/ inline const Aws::String& GetState() const{ return m_state; } /** *

The state of the route.

*/ inline bool StateHasBeenSet() const { return m_stateHasBeenSet; } /** *

The state of the route.

*/ inline void SetState(const Aws::String& value) { m_stateHasBeenSet = true; m_state = value; } /** *

The state of the route.

*/ inline void SetState(Aws::String&& value) { m_stateHasBeenSet = true; m_state = std::move(value); } /** *

The state of the route.

*/ inline void SetState(const char* value) { m_stateHasBeenSet = true; m_state.assign(value); } /** *

The state of the route.

*/ inline RouteSetDetails& WithState(const Aws::String& value) { SetState(value); return *this;} /** *

The state of the route.

*/ inline RouteSetDetails& WithState(Aws::String&& value) { SetState(std::move(value)); return *this;} /** *

The state of the route.

*/ inline RouteSetDetails& WithState(const char* value) { SetState(value); return *this;} /** *

The ID of a transit gateway.

*/ inline const Aws::String& GetTransitGatewayId() const{ return m_transitGatewayId; } /** *

The ID of a transit gateway.

*/ inline bool TransitGatewayIdHasBeenSet() const { return m_transitGatewayIdHasBeenSet; } /** *

The ID of a transit gateway.

*/ inline void SetTransitGatewayId(const Aws::String& value) { m_transitGatewayIdHasBeenSet = true; m_transitGatewayId = value; } /** *

The ID of a transit gateway.

*/ inline void SetTransitGatewayId(Aws::String&& value) { m_transitGatewayIdHasBeenSet = true; m_transitGatewayId = std::move(value); } /** *

The ID of a transit gateway.

*/ inline void SetTransitGatewayId(const char* value) { m_transitGatewayIdHasBeenSet = true; m_transitGatewayId.assign(value); } /** *

The ID of a transit gateway.

*/ inline RouteSetDetails& WithTransitGatewayId(const Aws::String& value) { SetTransitGatewayId(value); return *this;} /** *

The ID of a transit gateway.

*/ inline RouteSetDetails& WithTransitGatewayId(Aws::String&& value) { SetTransitGatewayId(std::move(value)); return *this;} /** *

The ID of a transit gateway.

*/ inline RouteSetDetails& WithTransitGatewayId(const char* value) { SetTransitGatewayId(value); return *this;} /** *

The ID of a VPC peering connection.

*/ inline const Aws::String& GetVpcPeeringConnectionId() const{ return m_vpcPeeringConnectionId; } /** *

The ID of a VPC peering connection.

*/ inline bool VpcPeeringConnectionIdHasBeenSet() const { return m_vpcPeeringConnectionIdHasBeenSet; } /** *

The ID of a VPC peering connection.

*/ inline void SetVpcPeeringConnectionId(const Aws::String& value) { m_vpcPeeringConnectionIdHasBeenSet = true; m_vpcPeeringConnectionId = value; } /** *

The ID of a VPC peering connection.

*/ inline void SetVpcPeeringConnectionId(Aws::String&& value) { m_vpcPeeringConnectionIdHasBeenSet = true; m_vpcPeeringConnectionId = std::move(value); } /** *

The ID of a VPC peering connection.

*/ inline void SetVpcPeeringConnectionId(const char* value) { m_vpcPeeringConnectionIdHasBeenSet = true; m_vpcPeeringConnectionId.assign(value); } /** *

The ID of a VPC peering connection.

*/ inline RouteSetDetails& WithVpcPeeringConnectionId(const Aws::String& value) { SetVpcPeeringConnectionId(value); return *this;} /** *

The ID of a VPC peering connection.

*/ inline RouteSetDetails& WithVpcPeeringConnectionId(Aws::String&& value) { SetVpcPeeringConnectionId(std::move(value)); return *this;} /** *

The ID of a VPC peering connection.

*/ inline RouteSetDetails& WithVpcPeeringConnectionId(const char* value) { SetVpcPeeringConnectionId(value); return *this;} private: Aws::String m_carrierGatewayId; bool m_carrierGatewayIdHasBeenSet = false; Aws::String m_coreNetworkArn; bool m_coreNetworkArnHasBeenSet = false; Aws::String m_destinationCidrBlock; bool m_destinationCidrBlockHasBeenSet = false; Aws::String m_destinationIpv6CidrBlock; bool m_destinationIpv6CidrBlockHasBeenSet = false; Aws::String m_destinationPrefixListId; bool m_destinationPrefixListIdHasBeenSet = false; Aws::String m_egressOnlyInternetGatewayId; bool m_egressOnlyInternetGatewayIdHasBeenSet = false; Aws::String m_gatewayId; bool m_gatewayIdHasBeenSet = false; Aws::String m_instanceId; bool m_instanceIdHasBeenSet = false; Aws::String m_instanceOwnerId; bool m_instanceOwnerIdHasBeenSet = false; Aws::String m_localGatewayId; bool m_localGatewayIdHasBeenSet = false; Aws::String m_natGatewayId; bool m_natGatewayIdHasBeenSet = false; Aws::String m_networkInterfaceId; bool m_networkInterfaceIdHasBeenSet = false; Aws::String m_origin; bool m_originHasBeenSet = false; Aws::String m_state; bool m_stateHasBeenSet = false; Aws::String m_transitGatewayId; bool m_transitGatewayIdHasBeenSet = false; Aws::String m_vpcPeeringConnectionId; bool m_vpcPeeringConnectionIdHasBeenSet = false; }; } // namespace Model } // namespace SecurityHub } // namespace Aws