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

Sidewalk update.

See Also:

AWS * API Reference

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

The new Sidewalk application server private key.

*/ inline const Aws::String& GetAppServerPrivateKey() const{ return m_appServerPrivateKey; } /** *

The new Sidewalk application server private key.

*/ inline bool AppServerPrivateKeyHasBeenSet() const { return m_appServerPrivateKeyHasBeenSet; } /** *

The new Sidewalk application server private key.

*/ inline void SetAppServerPrivateKey(const Aws::String& value) { m_appServerPrivateKeyHasBeenSet = true; m_appServerPrivateKey = value; } /** *

The new Sidewalk application server private key.

*/ inline void SetAppServerPrivateKey(Aws::String&& value) { m_appServerPrivateKeyHasBeenSet = true; m_appServerPrivateKey = std::move(value); } /** *

The new Sidewalk application server private key.

*/ inline void SetAppServerPrivateKey(const char* value) { m_appServerPrivateKeyHasBeenSet = true; m_appServerPrivateKey.assign(value); } /** *

The new Sidewalk application server private key.

*/ inline SidewalkUpdateAccount& WithAppServerPrivateKey(const Aws::String& value) { SetAppServerPrivateKey(value); return *this;} /** *

The new Sidewalk application server private key.

*/ inline SidewalkUpdateAccount& WithAppServerPrivateKey(Aws::String&& value) { SetAppServerPrivateKey(std::move(value)); return *this;} /** *

The new Sidewalk application server private key.

*/ inline SidewalkUpdateAccount& WithAppServerPrivateKey(const char* value) { SetAppServerPrivateKey(value); return *this;} private: Aws::String m_appServerPrivateKey; bool m_appServerPrivateKeyHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws