/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace IoTWireless { namespace Model { /** *

List of sidewalk certificates.

See Also:

AWS * API Reference

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

The certificate chain algorithm provided by sidewalk.

*/ inline const SigningAlg& GetSigningAlg() const{ return m_signingAlg; } /** *

The certificate chain algorithm provided by sidewalk.

*/ inline bool SigningAlgHasBeenSet() const { return m_signingAlgHasBeenSet; } /** *

The certificate chain algorithm provided by sidewalk.

*/ inline void SetSigningAlg(const SigningAlg& value) { m_signingAlgHasBeenSet = true; m_signingAlg = value; } /** *

The certificate chain algorithm provided by sidewalk.

*/ inline void SetSigningAlg(SigningAlg&& value) { m_signingAlgHasBeenSet = true; m_signingAlg = std::move(value); } /** *

The certificate chain algorithm provided by sidewalk.

*/ inline CertificateList& WithSigningAlg(const SigningAlg& value) { SetSigningAlg(value); return *this;} /** *

The certificate chain algorithm provided by sidewalk.

*/ inline CertificateList& WithSigningAlg(SigningAlg&& value) { SetSigningAlg(std::move(value)); return *this;} /** *

The value of the chosen sidewalk certificate.

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

The value of the chosen sidewalk certificate.

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

The value of the chosen sidewalk certificate.

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

The value of the chosen sidewalk certificate.

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

The value of the chosen sidewalk certificate.

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

The value of the chosen sidewalk certificate.

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

The value of the chosen sidewalk certificate.

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

The value of the chosen sidewalk certificate.

*/ inline CertificateList& WithValue(const char* value) { SetValue(value); return *this;} private: SigningAlg m_signingAlg; bool m_signingAlgHasBeenSet = false; Aws::String m_value; bool m_valueHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws