/** * 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 { /** *

Information about a Sidewalk account.

See Also:

AWS * API Reference

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

The Sidewalk Amazon ID.

*/ inline const Aws::String& GetAmazonId() const{ return m_amazonId; } /** *

The Sidewalk Amazon ID.

*/ inline bool AmazonIdHasBeenSet() const { return m_amazonIdHasBeenSet; } /** *

The Sidewalk Amazon ID.

*/ inline void SetAmazonId(const Aws::String& value) { m_amazonIdHasBeenSet = true; m_amazonId = value; } /** *

The Sidewalk Amazon ID.

*/ inline void SetAmazonId(Aws::String&& value) { m_amazonIdHasBeenSet = true; m_amazonId = std::move(value); } /** *

The Sidewalk Amazon ID.

*/ inline void SetAmazonId(const char* value) { m_amazonIdHasBeenSet = true; m_amazonId.assign(value); } /** *

The Sidewalk Amazon ID.

*/ inline SidewalkAccountInfo& WithAmazonId(const Aws::String& value) { SetAmazonId(value); return *this;} /** *

The Sidewalk Amazon ID.

*/ inline SidewalkAccountInfo& WithAmazonId(Aws::String&& value) { SetAmazonId(std::move(value)); return *this;} /** *

The Sidewalk Amazon ID.

*/ inline SidewalkAccountInfo& WithAmazonId(const char* value) { SetAmazonId(value); return *this;} /** *

The Sidewalk application server private key.

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

The Sidewalk application server private key.

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

The Sidewalk application server private key.

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

The Sidewalk application server private key.

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

The Sidewalk application server private key.

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

The Sidewalk application server private key.

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

The Sidewalk application server private key.

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

The Sidewalk application server private key.

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