/** * 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 SidewalkAccountInfoWithFingerprint { public: AWS_IOTWIRELESS_API SidewalkAccountInfoWithFingerprint(); AWS_IOTWIRELESS_API SidewalkAccountInfoWithFingerprint(Aws::Utils::Json::JsonView jsonValue); AWS_IOTWIRELESS_API SidewalkAccountInfoWithFingerprint& 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 SidewalkAccountInfoWithFingerprint& WithAmazonId(const Aws::String& value) { SetAmazonId(value); return *this;} /** *

The Sidewalk Amazon ID.

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

The Sidewalk Amazon ID.

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

The fingerprint of the Sidewalk application server private key.

*/ inline const Aws::String& GetFingerprint() const{ return m_fingerprint; } /** *

The fingerprint of the Sidewalk application server private key.

*/ inline bool FingerprintHasBeenSet() const { return m_fingerprintHasBeenSet; } /** *

The fingerprint of the Sidewalk application server private key.

*/ inline void SetFingerprint(const Aws::String& value) { m_fingerprintHasBeenSet = true; m_fingerprint = value; } /** *

The fingerprint of the Sidewalk application server private key.

*/ inline void SetFingerprint(Aws::String&& value) { m_fingerprintHasBeenSet = true; m_fingerprint = std::move(value); } /** *

The fingerprint of the Sidewalk application server private key.

*/ inline void SetFingerprint(const char* value) { m_fingerprintHasBeenSet = true; m_fingerprint.assign(value); } /** *

The fingerprint of the Sidewalk application server private key.

*/ inline SidewalkAccountInfoWithFingerprint& WithFingerprint(const Aws::String& value) { SetFingerprint(value); return *this;} /** *

The fingerprint of the Sidewalk application server private key.

*/ inline SidewalkAccountInfoWithFingerprint& WithFingerprint(Aws::String&& value) { SetFingerprint(std::move(value)); return *this;} /** *

The fingerprint of the Sidewalk application server private key.

*/ inline SidewalkAccountInfoWithFingerprint& WithFingerprint(const char* value) { SetFingerprint(value); return *this;} /** *

The Amazon Resource Name of the resource.

*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *

The Amazon Resource Name of the resource.

*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *

The Amazon Resource Name of the resource.

*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *

The Amazon Resource Name of the resource.

*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *

The Amazon Resource Name of the resource.

*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *

The Amazon Resource Name of the resource.

*/ inline SidewalkAccountInfoWithFingerprint& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *

The Amazon Resource Name of the resource.

*/ inline SidewalkAccountInfoWithFingerprint& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *

The Amazon Resource Name of the resource.

*/ inline SidewalkAccountInfoWithFingerprint& WithArn(const char* value) { SetArn(value); return *this;} private: Aws::String m_amazonId; bool m_amazonIdHasBeenSet = false; Aws::String m_fingerprint; bool m_fingerprintHasBeenSet = false; Aws::String m_arn; bool m_arnHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws