/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace S3 { namespace Model { /** *

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

*/ class AWS_S3_API AnalyticsAndOperator { public: AnalyticsAndOperator(); AnalyticsAndOperator(const Aws::Utils::Xml::XmlNode& xmlNode); AnalyticsAndOperator& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const; /** *

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::Vector& GetTags() const{ return m_tags; } /** *

The 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::Vector& value) { m_tagsHasBeenSet = true; m_tags = value; } /** *

The list of tags to use when evaluating an AND predicate.

*/ inline void SetTags(Aws::Vector&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); } /** *

The list of tags to use when evaluating an AND predicate.

*/ inline AnalyticsAndOperator& WithTags(const Aws::Vector& value) { SetTags(value); return *this;} /** *

The list of tags to use when evaluating an AND predicate.

*/ inline AnalyticsAndOperator& WithTags(Aws::Vector&& value) { SetTags(std::move(value)); return *this;} /** *

The 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 m_tags; bool m_tagsHasBeenSet; }; } // namespace Model } // namespace S3 } // namespace Aws