/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies the operator to use in an attribute-based condition that filters
* the results of a query for information about S3 buckets.See
* Also:
AWS
* API Reference
An equal to condition to apply to a specified attribute value for * buckets.
*/ inline const Aws::VectorAn equal to condition to apply to a specified attribute value for * buckets.
*/ inline bool EqHasBeenSet() const { return m_eqHasBeenSet; } /** *An equal to condition to apply to a specified attribute value for * buckets.
*/ inline void SetEq(const Aws::VectorAn equal to condition to apply to a specified attribute value for * buckets.
*/ inline void SetEq(Aws::VectorAn equal to condition to apply to a specified attribute value for * buckets.
*/ inline BucketCriteriaAdditionalProperties& WithEq(const Aws::VectorAn equal to condition to apply to a specified attribute value for * buckets.
*/ inline BucketCriteriaAdditionalProperties& WithEq(Aws::VectorAn equal to condition to apply to a specified attribute value for * buckets.
*/ inline BucketCriteriaAdditionalProperties& AddEq(const Aws::String& value) { m_eqHasBeenSet = true; m_eq.push_back(value); return *this; } /** *An equal to condition to apply to a specified attribute value for * buckets.
*/ inline BucketCriteriaAdditionalProperties& AddEq(Aws::String&& value) { m_eqHasBeenSet = true; m_eq.push_back(std::move(value)); return *this; } /** *An equal to condition to apply to a specified attribute value for * buckets.
*/ inline BucketCriteriaAdditionalProperties& AddEq(const char* value) { m_eqHasBeenSet = true; m_eq.push_back(value); return *this; } /** *A greater than condition to apply to a specified attribute value for * buckets.
*/ inline long long GetGt() const{ return m_gt; } /** *A greater than condition to apply to a specified attribute value for * buckets.
*/ inline bool GtHasBeenSet() const { return m_gtHasBeenSet; } /** *A greater than condition to apply to a specified attribute value for * buckets.
*/ inline void SetGt(long long value) { m_gtHasBeenSet = true; m_gt = value; } /** *A greater than condition to apply to a specified attribute value for * buckets.
*/ inline BucketCriteriaAdditionalProperties& WithGt(long long value) { SetGt(value); return *this;} /** *A greater than or equal to condition to apply to a specified attribute value * for buckets.
*/ inline long long GetGte() const{ return m_gte; } /** *A greater than or equal to condition to apply to a specified attribute value * for buckets.
*/ inline bool GteHasBeenSet() const { return m_gteHasBeenSet; } /** *A greater than or equal to condition to apply to a specified attribute value * for buckets.
*/ inline void SetGte(long long value) { m_gteHasBeenSet = true; m_gte = value; } /** *A greater than or equal to condition to apply to a specified attribute value * for buckets.
*/ inline BucketCriteriaAdditionalProperties& WithGte(long long value) { SetGte(value); return *this;} /** *A less than condition to apply to a specified attribute value for * buckets.
*/ inline long long GetLt() const{ return m_lt; } /** *A less than condition to apply to a specified attribute value for * buckets.
*/ inline bool LtHasBeenSet() const { return m_ltHasBeenSet; } /** *A less than condition to apply to a specified attribute value for * buckets.
*/ inline void SetLt(long long value) { m_ltHasBeenSet = true; m_lt = value; } /** *A less than condition to apply to a specified attribute value for * buckets.
*/ inline BucketCriteriaAdditionalProperties& WithLt(long long value) { SetLt(value); return *this;} /** *A less than or equal to condition to apply to a specified attribute value for * buckets.
*/ inline long long GetLte() const{ return m_lte; } /** *A less than or equal to condition to apply to a specified attribute value for * buckets.
*/ inline bool LteHasBeenSet() const { return m_lteHasBeenSet; } /** *A less than or equal to condition to apply to a specified attribute value for * buckets.
*/ inline void SetLte(long long value) { m_lteHasBeenSet = true; m_lte = value; } /** *A less than or equal to condition to apply to a specified attribute value for * buckets.
*/ inline BucketCriteriaAdditionalProperties& WithLte(long long value) { SetLte(value); return *this;} /** *A not equal to condition to apply to a specified attribute value for * buckets.
*/ inline const Aws::VectorA not equal to condition to apply to a specified attribute value for * buckets.
*/ inline bool NeqHasBeenSet() const { return m_neqHasBeenSet; } /** *A not equal to condition to apply to a specified attribute value for * buckets.
*/ inline void SetNeq(const Aws::VectorA not equal to condition to apply to a specified attribute value for * buckets.
*/ inline void SetNeq(Aws::VectorA not equal to condition to apply to a specified attribute value for * buckets.
*/ inline BucketCriteriaAdditionalProperties& WithNeq(const Aws::VectorA not equal to condition to apply to a specified attribute value for * buckets.
*/ inline BucketCriteriaAdditionalProperties& WithNeq(Aws::VectorA not equal to condition to apply to a specified attribute value for * buckets.
*/ inline BucketCriteriaAdditionalProperties& AddNeq(const Aws::String& value) { m_neqHasBeenSet = true; m_neq.push_back(value); return *this; } /** *A not equal to condition to apply to a specified attribute value for * buckets.
*/ inline BucketCriteriaAdditionalProperties& AddNeq(Aws::String&& value) { m_neqHasBeenSet = true; m_neq.push_back(std::move(value)); return *this; } /** *A not equal to condition to apply to a specified attribute value for * buckets.
*/ inline BucketCriteriaAdditionalProperties& AddNeq(const char* value) { m_neqHasBeenSet = true; m_neq.push_back(value); return *this; } /** *The prefix of the buckets to include in the results.
*/ inline const Aws::String& GetPrefix() const{ return m_prefix; } /** *The prefix of the buckets to include in the results.
*/ inline bool PrefixHasBeenSet() const { return m_prefixHasBeenSet; } /** *The prefix of the buckets to include in the results.
*/ inline void SetPrefix(const Aws::String& value) { m_prefixHasBeenSet = true; m_prefix = value; } /** *The prefix of the buckets to include in the results.
*/ inline void SetPrefix(Aws::String&& value) { m_prefixHasBeenSet = true; m_prefix = std::move(value); } /** *The prefix of the buckets to include in the results.
*/ inline void SetPrefix(const char* value) { m_prefixHasBeenSet = true; m_prefix.assign(value); } /** *The prefix of the buckets to include in the results.
*/ inline BucketCriteriaAdditionalProperties& WithPrefix(const Aws::String& value) { SetPrefix(value); return *this;} /** *The prefix of the buckets to include in the results.
*/ inline BucketCriteriaAdditionalProperties& WithPrefix(Aws::String&& value) { SetPrefix(std::move(value)); return *this;} /** *The prefix of the buckets to include in the results.
*/ inline BucketCriteriaAdditionalProperties& WithPrefix(const char* value) { SetPrefix(value); return *this;} private: Aws::Vector