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

Describes the metadata that's delivered to the specified HTTP endpoint * destination.

See Also:

AWS * API Reference

*/ class AWS_FIREHOSE_API HttpEndpointCommonAttribute { public: HttpEndpointCommonAttribute(); HttpEndpointCommonAttribute(Aws::Utils::Json::JsonView jsonValue); HttpEndpointCommonAttribute& operator=(Aws::Utils::Json::JsonView jsonValue); Aws::Utils::Json::JsonValue Jsonize() const; /** *

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