/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the metadata that's delivered to the specified HTTP endpoint
* destination.See Also:
AWS
* API Reference
The name of the HTTP endpoint common attribute.
*/ inline const Aws::String& GetAttributeName() const{ return m_attributeName; } /** *The name of the HTTP endpoint common attribute.
*/ inline bool AttributeNameHasBeenSet() const { return m_attributeNameHasBeenSet; } /** *The name of the HTTP endpoint common attribute.
*/ inline void SetAttributeName(const Aws::String& value) { m_attributeNameHasBeenSet = true; m_attributeName = value; } /** *The name of the HTTP endpoint common attribute.
*/ inline void SetAttributeName(Aws::String&& value) { m_attributeNameHasBeenSet = true; m_attributeName = std::move(value); } /** *The name of the HTTP endpoint common attribute.
*/ inline void SetAttributeName(const char* value) { m_attributeNameHasBeenSet = true; m_attributeName.assign(value); } /** *The name of the HTTP endpoint common attribute.
*/ inline HttpEndpointCommonAttribute& WithAttributeName(const Aws::String& value) { SetAttributeName(value); return *this;} /** *The name of the HTTP endpoint common attribute.
*/ inline HttpEndpointCommonAttribute& WithAttributeName(Aws::String&& value) { SetAttributeName(std::move(value)); return *this;} /** *The name of the HTTP endpoint common attribute.
*/ inline HttpEndpointCommonAttribute& WithAttributeName(const char* value) { SetAttributeName(value); return *this;} /** *The value of the HTTP endpoint common attribute.
*/ inline const Aws::String& GetAttributeValue() const{ return m_attributeValue; } /** *The value of the HTTP endpoint common attribute.
*/ inline bool AttributeValueHasBeenSet() const { return m_attributeValueHasBeenSet; } /** *The value of the HTTP endpoint common attribute.
*/ inline void SetAttributeValue(const Aws::String& value) { m_attributeValueHasBeenSet = true; m_attributeValue = value; } /** *The value of the HTTP endpoint common attribute.
*/ inline void SetAttributeValue(Aws::String&& value) { m_attributeValueHasBeenSet = true; m_attributeValue = std::move(value); } /** *The value of the HTTP endpoint common attribute.
*/ inline void SetAttributeValue(const char* value) { m_attributeValueHasBeenSet = true; m_attributeValue.assign(value); } /** *The value of the HTTP endpoint common attribute.
*/ inline HttpEndpointCommonAttribute& WithAttributeValue(const Aws::String& value) { SetAttributeValue(value); return *this;} /** *The value of the HTTP endpoint common attribute.
*/ inline HttpEndpointCommonAttribute& WithAttributeValue(Aws::String&& value) { SetAttributeValue(std::move(value)); return *this;} /** *The value of the HTTP endpoint common attribute.
*/ inline HttpEndpointCommonAttribute& WithAttributeValue(const char* value) { SetAttributeValue(value); return *this;} private: Aws::String m_attributeName; bool m_attributeNameHasBeenSet; Aws::String m_attributeValue; bool m_attributeValueHasBeenSet; }; } // namespace Model } // namespace Firehose } // namespace Aws