/** * 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 MediaLive { namespace Model { /** * An IPv4 CIDR to whitelist.

See Also:

AWS * API Reference

*/ class InputWhitelistRuleCidr { public: AWS_MEDIALIVE_API InputWhitelistRuleCidr(); AWS_MEDIALIVE_API InputWhitelistRuleCidr(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIALIVE_API InputWhitelistRuleCidr& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const; /** * The IPv4 CIDR to whitelist. */ inline const Aws::String& GetCidr() const{ return m_cidr; } /** * The IPv4 CIDR to whitelist. */ inline bool CidrHasBeenSet() const { return m_cidrHasBeenSet; } /** * The IPv4 CIDR to whitelist. */ inline void SetCidr(const Aws::String& value) { m_cidrHasBeenSet = true; m_cidr = value; } /** * The IPv4 CIDR to whitelist. */ inline void SetCidr(Aws::String&& value) { m_cidrHasBeenSet = true; m_cidr = std::move(value); } /** * The IPv4 CIDR to whitelist. */ inline void SetCidr(const char* value) { m_cidrHasBeenSet = true; m_cidr.assign(value); } /** * The IPv4 CIDR to whitelist. */ inline InputWhitelistRuleCidr& WithCidr(const Aws::String& value) { SetCidr(value); return *this;} /** * The IPv4 CIDR to whitelist. */ inline InputWhitelistRuleCidr& WithCidr(Aws::String&& value) { SetCidr(std::move(value)); return *this;} /** * The IPv4 CIDR to whitelist. */ inline InputWhitelistRuleCidr& WithCidr(const char* value) { SetCidr(value); return *this;} private: Aws::String m_cidr; bool m_cidrHasBeenSet = false; }; } // namespace Model } // namespace MediaLive } // namespace Aws