This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-firehose/include/aws/firehose/model/HttpEndpointConfiguration.h

186 lines
6.0 KiB
C
Raw Normal View History

/**
* 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 configuration of the HTTP endpoint to which Kinesis Firehose
* delivers data.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/HttpEndpointConfiguration">AWS
* API Reference</a></p>
*/
class AWS_FIREHOSE_API HttpEndpointConfiguration
{
public:
HttpEndpointConfiguration();
HttpEndpointConfiguration(Aws::Utils::Json::JsonView jsonValue);
HttpEndpointConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The URL of the HTTP endpoint selected as the destination.</p>
*/
inline const Aws::String& GetUrl() const{ return m_url; }
/**
* <p>The URL of the HTTP endpoint selected as the destination.</p>
*/
inline bool UrlHasBeenSet() const { return m_urlHasBeenSet; }
/**
* <p>The URL of the HTTP endpoint selected as the destination.</p>
*/
inline void SetUrl(const Aws::String& value) { m_urlHasBeenSet = true; m_url = value; }
/**
* <p>The URL of the HTTP endpoint selected as the destination.</p>
*/
inline void SetUrl(Aws::String&& value) { m_urlHasBeenSet = true; m_url = std::move(value); }
/**
* <p>The URL of the HTTP endpoint selected as the destination.</p>
*/
inline void SetUrl(const char* value) { m_urlHasBeenSet = true; m_url.assign(value); }
/**
* <p>The URL of the HTTP endpoint selected as the destination.</p>
*/
inline HttpEndpointConfiguration& WithUrl(const Aws::String& value) { SetUrl(value); return *this;}
/**
* <p>The URL of the HTTP endpoint selected as the destination.</p>
*/
inline HttpEndpointConfiguration& WithUrl(Aws::String&& value) { SetUrl(std::move(value)); return *this;}
/**
* <p>The URL of the HTTP endpoint selected as the destination.</p>
*/
inline HttpEndpointConfiguration& WithUrl(const char* value) { SetUrl(value); return *this;}
/**
* <p>The name of the HTTP endpoint selected as the destination.</p>
*/
inline const Aws::String& GetName() const{ return m_name; }
/**
* <p>The name of the HTTP endpoint selected as the destination.</p>
*/
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
/**
* <p>The name of the HTTP endpoint selected as the destination.</p>
*/
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
/**
* <p>The name of the HTTP endpoint selected as the destination.</p>
*/
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
/**
* <p>The name of the HTTP endpoint selected as the destination.</p>
*/
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
/**
* <p>The name of the HTTP endpoint selected as the destination.</p>
*/
inline HttpEndpointConfiguration& WithName(const Aws::String& value) { SetName(value); return *this;}
/**
* <p>The name of the HTTP endpoint selected as the destination.</p>
*/
inline HttpEndpointConfiguration& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
/**
* <p>The name of the HTTP endpoint selected as the destination.</p>
*/
inline HttpEndpointConfiguration& WithName(const char* value) { SetName(value); return *this;}
/**
* <p>The access key required for Kinesis Firehose to authenticate with the HTTP
* endpoint selected as the destination.</p>
*/
inline const Aws::String& GetAccessKey() const{ return m_accessKey; }
/**
* <p>The access key required for Kinesis Firehose to authenticate with the HTTP
* endpoint selected as the destination.</p>
*/
inline bool AccessKeyHasBeenSet() const { return m_accessKeyHasBeenSet; }
/**
* <p>The access key required for Kinesis Firehose to authenticate with the HTTP
* endpoint selected as the destination.</p>
*/
inline void SetAccessKey(const Aws::String& value) { m_accessKeyHasBeenSet = true; m_accessKey = value; }
/**
* <p>The access key required for Kinesis Firehose to authenticate with the HTTP
* endpoint selected as the destination.</p>
*/
inline void SetAccessKey(Aws::String&& value) { m_accessKeyHasBeenSet = true; m_accessKey = std::move(value); }
/**
* <p>The access key required for Kinesis Firehose to authenticate with the HTTP
* endpoint selected as the destination.</p>
*/
inline void SetAccessKey(const char* value) { m_accessKeyHasBeenSet = true; m_accessKey.assign(value); }
/**
* <p>The access key required for Kinesis Firehose to authenticate with the HTTP
* endpoint selected as the destination.</p>
*/
inline HttpEndpointConfiguration& WithAccessKey(const Aws::String& value) { SetAccessKey(value); return *this;}
/**
* <p>The access key required for Kinesis Firehose to authenticate with the HTTP
* endpoint selected as the destination.</p>
*/
inline HttpEndpointConfiguration& WithAccessKey(Aws::String&& value) { SetAccessKey(std::move(value)); return *this;}
/**
* <p>The access key required for Kinesis Firehose to authenticate with the HTTP
* endpoint selected as the destination.</p>
*/
inline HttpEndpointConfiguration& WithAccessKey(const char* value) { SetAccessKey(value); return *this;}
private:
Aws::String m_url;
bool m_urlHasBeenSet;
Aws::String m_name;
bool m_nameHasBeenSet;
Aws::String m_accessKey;
bool m_accessKeyHasBeenSet;
};
} // namespace Model
} // namespace Firehose
} // namespace Aws