/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Defines a property predicate.See Also:
AWS
* API Reference
The key of the property.
*/ inline const Aws::String& GetKey() const{ return m_key; } /** *The key of the property.
*/ inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; } /** *The key of the property.
*/ inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; } /** *The key of the property.
*/ inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); } /** *The key of the property.
*/ inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); } /** *The key of the property.
*/ inline PropertyPredicate& WithKey(const Aws::String& value) { SetKey(value); return *this;} /** *The key of the property.
*/ inline PropertyPredicate& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;} /** *The key of the property.
*/ inline PropertyPredicate& WithKey(const char* value) { SetKey(value); return *this;} /** *The value of the property.
*/ inline const Aws::String& GetValue() const{ return m_value; } /** *The value of the property.
*/ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } /** *The value of the property.
*/ inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; } /** *The value of the property.
*/ inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); } /** *The value of the property.
*/ inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); } /** *The value of the property.
*/ inline PropertyPredicate& WithValue(const Aws::String& value) { SetValue(value); return *this;} /** *The value of the property.
*/ inline PropertyPredicate& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;} /** *The value of the property.
*/ inline PropertyPredicate& WithValue(const char* value) { SetValue(value); return *this;} /** *The comparator used to compare this property to others.
*/ inline const Comparator& GetComparator() const{ return m_comparator; } /** *The comparator used to compare this property to others.
*/ inline bool ComparatorHasBeenSet() const { return m_comparatorHasBeenSet; } /** *The comparator used to compare this property to others.
*/ inline void SetComparator(const Comparator& value) { m_comparatorHasBeenSet = true; m_comparator = value; } /** *The comparator used to compare this property to others.
*/ inline void SetComparator(Comparator&& value) { m_comparatorHasBeenSet = true; m_comparator = std::move(value); } /** *The comparator used to compare this property to others.
*/ inline PropertyPredicate& WithComparator(const Comparator& value) { SetComparator(value); return *this;} /** *The comparator used to compare this property to others.
*/ inline PropertyPredicate& WithComparator(Comparator&& value) { SetComparator(std::move(value)); return *this;} private: Aws::String m_key; bool m_keyHasBeenSet = false; Aws::String m_value; bool m_valueHasBeenSet = false; Comparator m_comparator; bool m_comparatorHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws