/** * 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 { /** *

Describes a virtual private gateway propagating route.

See * Also:

AWS * API Reference

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

The ID of the virtual private gateway.

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

The ID of the virtual private gateway.

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

The ID of the virtual private gateway.

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

The ID of the virtual private gateway.

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

The ID of the virtual private gateway.

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

The ID of the virtual private gateway.

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

The ID of the virtual private gateway.

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

The ID of the virtual private gateway.

*/ inline PropagatingVgwSetDetails& WithGatewayId(const char* value) { SetGatewayId(value); return *this;} private: Aws::String m_gatewayId; bool m_gatewayIdHasBeenSet = false; }; } // namespace Model } // namespace SecurityHub } // namespace Aws