/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A recommendation on how to remediate the issue identified in a
* finding.See Also:
AWS
* API Reference
Describes the recommended steps to take to remediate an issue identified in a * finding.
*/ inline const Aws::String& GetText() const{ return m_text; } /** *Describes the recommended steps to take to remediate an issue identified in a * finding.
*/ inline bool TextHasBeenSet() const { return m_textHasBeenSet; } /** *Describes the recommended steps to take to remediate an issue identified in a * finding.
*/ inline void SetText(const Aws::String& value) { m_textHasBeenSet = true; m_text = value; } /** *Describes the recommended steps to take to remediate an issue identified in a * finding.
*/ inline void SetText(Aws::String&& value) { m_textHasBeenSet = true; m_text = std::move(value); } /** *Describes the recommended steps to take to remediate an issue identified in a * finding.
*/ inline void SetText(const char* value) { m_textHasBeenSet = true; m_text.assign(value); } /** *Describes the recommended steps to take to remediate an issue identified in a * finding.
*/ inline Recommendation& WithText(const Aws::String& value) { SetText(value); return *this;} /** *Describes the recommended steps to take to remediate an issue identified in a * finding.
*/ inline Recommendation& WithText(Aws::String&& value) { SetText(std::move(value)); return *this;} /** *Describes the recommended steps to take to remediate an issue identified in a * finding.
*/ inline Recommendation& WithText(const char* value) { SetText(value); return *this;} /** *A URL to a page or site that contains information about how to remediate a * finding.
*/ inline const Aws::String& GetUrl() const{ return m_url; } /** *A URL to a page or site that contains information about how to remediate a * finding.
*/ inline bool UrlHasBeenSet() const { return m_urlHasBeenSet; } /** *A URL to a page or site that contains information about how to remediate a * finding.
*/ inline void SetUrl(const Aws::String& value) { m_urlHasBeenSet = true; m_url = value; } /** *A URL to a page or site that contains information about how to remediate a * finding.
*/ inline void SetUrl(Aws::String&& value) { m_urlHasBeenSet = true; m_url = std::move(value); } /** *A URL to a page or site that contains information about how to remediate a * finding.
*/ inline void SetUrl(const char* value) { m_urlHasBeenSet = true; m_url.assign(value); } /** *A URL to a page or site that contains information about how to remediate a * finding.
*/ inline Recommendation& WithUrl(const Aws::String& value) { SetUrl(value); return *this;} /** *A URL to a page or site that contains information about how to remediate a * finding.
*/ inline Recommendation& WithUrl(Aws::String&& value) { SetUrl(std::move(value)); return *this;} /** *A URL to a page or site that contains information about how to remediate a * finding.
*/ inline Recommendation& WithUrl(const char* value) { SetUrl(value); return *this;} private: Aws::String m_text; bool m_textHasBeenSet = false; Aws::String m_url; bool m_urlHasBeenSet = false; }; } // namespace Model } // namespace SecurityHub } // namespace Aws