/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A conjunction (logical AND) of predicates, which is used in evaluating a
* metrics filter. The operator must have at least two predicates in any
* combination, and an object must match all of the predicates for the filter to
* apply.See Also:
AWS
* API Reference
The prefix to use when evaluating an AND predicate: The prefix that an object * must have to be included in the metrics results.
*/ inline const Aws::String& GetPrefix() const{ return m_prefix; } /** *The prefix to use when evaluating an AND predicate: The prefix that an object * must have to be included in the metrics results.
*/ inline bool PrefixHasBeenSet() const { return m_prefixHasBeenSet; } /** *The prefix to use when evaluating an AND predicate: The prefix that an object * must have to be included in the metrics results.
*/ inline void SetPrefix(const Aws::String& value) { m_prefixHasBeenSet = true; m_prefix = value; } /** *The prefix to use when evaluating an AND predicate: The prefix that an object * must have to be included in the metrics results.
*/ inline void SetPrefix(Aws::String&& value) { m_prefixHasBeenSet = true; m_prefix = std::move(value); } /** *The prefix to use when evaluating an AND predicate: The prefix that an object * must have to be included in the metrics results.
*/ inline void SetPrefix(const char* value) { m_prefixHasBeenSet = true; m_prefix.assign(value); } /** *The prefix to use when evaluating an AND predicate: The prefix that an object * must have to be included in the metrics results.
*/ inline AnalyticsAndOperator& WithPrefix(const Aws::String& value) { SetPrefix(value); return *this;} /** *The prefix to use when evaluating an AND predicate: The prefix that an object * must have to be included in the metrics results.
*/ inline AnalyticsAndOperator& WithPrefix(Aws::String&& value) { SetPrefix(std::move(value)); return *this;} /** *The prefix to use when evaluating an AND predicate: The prefix that an object * must have to be included in the metrics results.
*/ inline AnalyticsAndOperator& WithPrefix(const char* value) { SetPrefix(value); return *this;} /** *The list of tags to use when evaluating an AND predicate.
*/ inline const Aws::VectorThe list of tags to use when evaluating an AND predicate.
*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *The list of tags to use when evaluating an AND predicate.
*/ inline void SetTags(const Aws::VectorThe list of tags to use when evaluating an AND predicate.
*/ inline void SetTags(Aws::VectorThe list of tags to use when evaluating an AND predicate.
*/ inline AnalyticsAndOperator& WithTags(const Aws::VectorThe list of tags to use when evaluating an AND predicate.
*/ inline AnalyticsAndOperator& WithTags(Aws::VectorThe list of tags to use when evaluating an AND predicate.
*/ inline AnalyticsAndOperator& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; } /** *The list of tags to use when evaluating an AND predicate.
*/ inline AnalyticsAndOperator& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } private: Aws::String m_prefix; bool m_prefixHasBeenSet; Aws::Vector