/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies 1-10 occurrences of a specific type of sensitive data reported by a
* finding.See Also:
AWS
* API Reference
An occurrence of the specified type of sensitive data. Each occurrence can * contain 1-128 characters.
*/ inline const Aws::String& GetValue() const{ return m_value; } /** *An occurrence of the specified type of sensitive data. Each occurrence can * contain 1-128 characters.
*/ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } /** *An occurrence of the specified type of sensitive data. Each occurrence can * contain 1-128 characters.
*/ inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; } /** *An occurrence of the specified type of sensitive data. Each occurrence can * contain 1-128 characters.
*/ inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); } /** *An occurrence of the specified type of sensitive data. Each occurrence can * contain 1-128 characters.
*/ inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); } /** *An occurrence of the specified type of sensitive data. Each occurrence can * contain 1-128 characters.
*/ inline DetectedDataDetails& WithValue(const Aws::String& value) { SetValue(value); return *this;} /** *An occurrence of the specified type of sensitive data. Each occurrence can * contain 1-128 characters.
*/ inline DetectedDataDetails& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;} /** *An occurrence of the specified type of sensitive data. Each occurrence can * contain 1-128 characters.
*/ inline DetectedDataDetails& WithValue(const char* value) { SetValue(value); return *this;} private: Aws::String m_value; bool m_valueHasBeenSet = false; }; } // namespace Model } // namespace Macie2 } // namespace Aws