134 lines
4.2 KiB
C++
134 lines
4.2 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/firehose/Firehose_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace Firehose
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Describes the metadata that's delivered to the specified HTTP endpoint
|
|
* destination.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/HttpEndpointCommonAttribute">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
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;
|
|
|
|
|
|
/**
|
|
* <p>The name of the HTTP endpoint common attribute.</p>
|
|
*/
|
|
inline const Aws::String& GetAttributeName() const{ return m_attributeName; }
|
|
|
|
/**
|
|
* <p>The name of the HTTP endpoint common attribute.</p>
|
|
*/
|
|
inline bool AttributeNameHasBeenSet() const { return m_attributeNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the HTTP endpoint common attribute.</p>
|
|
*/
|
|
inline void SetAttributeName(const Aws::String& value) { m_attributeNameHasBeenSet = true; m_attributeName = value; }
|
|
|
|
/**
|
|
* <p>The name of the HTTP endpoint common attribute.</p>
|
|
*/
|
|
inline void SetAttributeName(Aws::String&& value) { m_attributeNameHasBeenSet = true; m_attributeName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the HTTP endpoint common attribute.</p>
|
|
*/
|
|
inline void SetAttributeName(const char* value) { m_attributeNameHasBeenSet = true; m_attributeName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the HTTP endpoint common attribute.</p>
|
|
*/
|
|
inline HttpEndpointCommonAttribute& WithAttributeName(const Aws::String& value) { SetAttributeName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the HTTP endpoint common attribute.</p>
|
|
*/
|
|
inline HttpEndpointCommonAttribute& WithAttributeName(Aws::String&& value) { SetAttributeName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the HTTP endpoint common attribute.</p>
|
|
*/
|
|
inline HttpEndpointCommonAttribute& WithAttributeName(const char* value) { SetAttributeName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The value of the HTTP endpoint common attribute.</p>
|
|
*/
|
|
inline const Aws::String& GetAttributeValue() const{ return m_attributeValue; }
|
|
|
|
/**
|
|
* <p>The value of the HTTP endpoint common attribute.</p>
|
|
*/
|
|
inline bool AttributeValueHasBeenSet() const { return m_attributeValueHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The value of the HTTP endpoint common attribute.</p>
|
|
*/
|
|
inline void SetAttributeValue(const Aws::String& value) { m_attributeValueHasBeenSet = true; m_attributeValue = value; }
|
|
|
|
/**
|
|
* <p>The value of the HTTP endpoint common attribute.</p>
|
|
*/
|
|
inline void SetAttributeValue(Aws::String&& value) { m_attributeValueHasBeenSet = true; m_attributeValue = std::move(value); }
|
|
|
|
/**
|
|
* <p>The value of the HTTP endpoint common attribute.</p>
|
|
*/
|
|
inline void SetAttributeValue(const char* value) { m_attributeValueHasBeenSet = true; m_attributeValue.assign(value); }
|
|
|
|
/**
|
|
* <p>The value of the HTTP endpoint common attribute.</p>
|
|
*/
|
|
inline HttpEndpointCommonAttribute& WithAttributeValue(const Aws::String& value) { SetAttributeValue(value); return *this;}
|
|
|
|
/**
|
|
* <p>The value of the HTTP endpoint common attribute.</p>
|
|
*/
|
|
inline HttpEndpointCommonAttribute& WithAttributeValue(Aws::String&& value) { SetAttributeValue(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The value of the HTTP endpoint common attribute.</p>
|
|
*/
|
|
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
|