/** * 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 CloudWatchEvents { namespace Model { /** *

Additional query string parameter for the connection. You can include up to * 100 additional query string parameters per request. Each additional parameter * counts towards the event payload size, which cannot exceed 64 KB.

See * Also:

AWS * API Reference

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

The key for a query string parameter.

*/ inline const Aws::String& GetKey() const{ return m_key; } /** *

The key for a query string parameter.

*/ inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; } /** *

The key for a query string parameter.

*/ inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; } /** *

The key for a query string parameter.

*/ inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); } /** *

The key for a query string parameter.

*/ inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); } /** *

The key for a query string parameter.

*/ inline ConnectionQueryStringParameter& WithKey(const Aws::String& value) { SetKey(value); return *this;} /** *

The key for a query string parameter.

*/ inline ConnectionQueryStringParameter& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;} /** *

The key for a query string parameter.

*/ inline ConnectionQueryStringParameter& WithKey(const char* value) { SetKey(value); return *this;} /** *

The value associated with the key for the query string parameter.

*/ inline const Aws::String& GetValue() const{ return m_value; } /** *

The value associated with the key for the query string parameter.

*/ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } /** *

The value associated with the key for the query string parameter.

*/ inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; } /** *

The value associated with the key for the query string parameter.

*/ inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); } /** *

The value associated with the key for the query string parameter.

*/ inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); } /** *

The value associated with the key for the query string parameter.

*/ inline ConnectionQueryStringParameter& WithValue(const Aws::String& value) { SetValue(value); return *this;} /** *

The value associated with the key for the query string parameter.

*/ inline ConnectionQueryStringParameter& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;} /** *

The value associated with the key for the query string parameter.

*/ inline ConnectionQueryStringParameter& WithValue(const char* value) { SetValue(value); return *this;} /** *

Specifies whether the value is secret.

*/ inline bool GetIsValueSecret() const{ return m_isValueSecret; } /** *

Specifies whether the value is secret.

*/ inline bool IsValueSecretHasBeenSet() const { return m_isValueSecretHasBeenSet; } /** *

Specifies whether the value is secret.

*/ inline void SetIsValueSecret(bool value) { m_isValueSecretHasBeenSet = true; m_isValueSecret = value; } /** *

Specifies whether the value is secret.

*/ inline ConnectionQueryStringParameter& WithIsValueSecret(bool value) { SetIsValueSecret(value); return *this;} private: Aws::String m_key; bool m_keyHasBeenSet = false; Aws::String m_value; bool m_valueHasBeenSet = false; bool m_isValueSecret; bool m_isValueSecretHasBeenSet = false; }; } // namespace Model } // namespace CloudWatchEvents } // namespace Aws