/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides details about the IPv4 CIDR blocks for the VPC. See
* Also:
AWS
* API Reference
The IPv4 CIDR block for the VPC.
*/ inline const Aws::String& GetCidrBlock() const{ return m_cidrBlock; } /** *The IPv4 CIDR block for the VPC.
*/ inline bool CidrBlockHasBeenSet() const { return m_cidrBlockHasBeenSet; } /** *The IPv4 CIDR block for the VPC.
*/ inline void SetCidrBlock(const Aws::String& value) { m_cidrBlockHasBeenSet = true; m_cidrBlock = value; } /** *The IPv4 CIDR block for the VPC.
*/ inline void SetCidrBlock(Aws::String&& value) { m_cidrBlockHasBeenSet = true; m_cidrBlock = std::move(value); } /** *The IPv4 CIDR block for the VPC.
*/ inline void SetCidrBlock(const char* value) { m_cidrBlockHasBeenSet = true; m_cidrBlock.assign(value); } /** *The IPv4 CIDR block for the VPC.
*/ inline VpcInfoCidrBlockSetDetails& WithCidrBlock(const Aws::String& value) { SetCidrBlock(value); return *this;} /** *The IPv4 CIDR block for the VPC.
*/ inline VpcInfoCidrBlockSetDetails& WithCidrBlock(Aws::String&& value) { SetCidrBlock(std::move(value)); return *this;} /** *The IPv4 CIDR block for the VPC.
*/ inline VpcInfoCidrBlockSetDetails& WithCidrBlock(const char* value) { SetCidrBlock(value); return *this;} private: Aws::String m_cidrBlock; bool m_cidrBlockHasBeenSet = false; }; } // namespace Model } // namespace SecurityHub } // namespace Aws