/**
* 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, and an object
* must match all of the predicates in order for the filter to apply.See
* Also:
AWS
* API Reference
The prefix used when evaluating an AND predicate.
*/ inline const Aws::String& GetPrefix() const{ return m_prefix; } /** *The prefix used when evaluating an AND predicate.
*/ inline bool PrefixHasBeenSet() const { return m_prefixHasBeenSet; } /** *The prefix used when evaluating an AND predicate.
*/ inline void SetPrefix(const Aws::String& value) { m_prefixHasBeenSet = true; m_prefix = value; } /** *The prefix used when evaluating an AND predicate.
*/ inline void SetPrefix(Aws::String&& value) { m_prefixHasBeenSet = true; m_prefix = std::move(value); } /** *The prefix used when evaluating an AND predicate.
*/ inline void SetPrefix(const char* value) { m_prefixHasBeenSet = true; m_prefix.assign(value); } /** *The prefix used when evaluating an AND predicate.
*/ inline MetricsAndOperator& WithPrefix(const Aws::String& value) { SetPrefix(value); return *this;} /** *The prefix used when evaluating an AND predicate.
*/ inline MetricsAndOperator& WithPrefix(Aws::String&& value) { SetPrefix(std::move(value)); return *this;} /** *The prefix used when evaluating an AND predicate.
*/ inline MetricsAndOperator& WithPrefix(const char* value) { SetPrefix(value); return *this;} /** *The list of tags used when evaluating an AND predicate.
*/ inline const Aws::VectorThe list of tags used when evaluating an AND predicate.
*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *The list of tags used when evaluating an AND predicate.
*/ inline void SetTags(const Aws::VectorThe list of tags used when evaluating an AND predicate.
*/ inline void SetTags(Aws::VectorThe list of tags used when evaluating an AND predicate.
*/ inline MetricsAndOperator& WithTags(const Aws::VectorThe list of tags used when evaluating an AND predicate.
*/ inline MetricsAndOperator& WithTags(Aws::VectorThe list of tags used when evaluating an AND predicate.
*/ inline MetricsAndOperator& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; } /** *The list of tags used when evaluating an AND predicate.
*/ inline MetricsAndOperator& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } /** *The access point ARN used when evaluating an AND predicate.
*/ inline const Aws::String& GetAccessPointArn() const{ return m_accessPointArn; } /** *The access point ARN used when evaluating an AND predicate.
*/ inline bool AccessPointArnHasBeenSet() const { return m_accessPointArnHasBeenSet; } /** *The access point ARN used when evaluating an AND predicate.
*/ inline void SetAccessPointArn(const Aws::String& value) { m_accessPointArnHasBeenSet = true; m_accessPointArn = value; } /** *The access point ARN used when evaluating an AND predicate.
*/ inline void SetAccessPointArn(Aws::String&& value) { m_accessPointArnHasBeenSet = true; m_accessPointArn = std::move(value); } /** *The access point ARN used when evaluating an AND predicate.
*/ inline void SetAccessPointArn(const char* value) { m_accessPointArnHasBeenSet = true; m_accessPointArn.assign(value); } /** *The access point ARN used when evaluating an AND predicate.
*/ inline MetricsAndOperator& WithAccessPointArn(const Aws::String& value) { SetAccessPointArn(value); return *this;} /** *The access point ARN used when evaluating an AND predicate.
*/ inline MetricsAndOperator& WithAccessPointArn(Aws::String&& value) { SetAccessPointArn(std::move(value)); return *this;} /** *The access point ARN used when evaluating an AND predicate.
*/ inline MetricsAndOperator& WithAccessPointArn(const char* value) { SetAccessPointArn(value); return *this;} private: Aws::String m_prefix; bool m_prefixHasBeenSet; Aws::Vector